@pie-element/number-line 8.0.4-next.9 → 8.1.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
@@ -3,6 +3,18 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [8.1.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/number-line@8.0.3...@pie-element/number-line@8.1.0) (2024-03-04)
7
+
8
+
9
+ ### Features
10
+
11
+ * Add configuration for custom buttons PD-3506 ([690e6d3](https://github.com/pie-framework/pie-elements/commit/690e6d31cf66ad02287501ad5cb9c5cc22d6b088))
12
+ * update pie-lib/pie-toolbox version PD-1870 and PD-3501 ([8df1d8d](https://github.com/pie-framework/pie-elements/commit/8df1d8d281a0d6023d5a9c0e6fdd29fea71b6ac1))
13
+
14
+
15
+
16
+
17
+
6
18
  ## [8.0.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/number-line@8.0.2...@pie-element/number-line@8.0.3) (2024-02-20)
7
19
 
8
20
 
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [7.1.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/number-line-configure@7.0.2...@pie-element/number-line-configure@7.1.0) (2024-03-04)
7
+
8
+
9
+ ### Features
10
+
11
+ * update pie-lib/pie-toolbox version PD-1870 and PD-3501 ([8df1d8d](https://github.com/pie-framework/pie-elements/commit/8df1d8d281a0d6023d5a9c0e6fdd29fea71b6ac1))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [7.0.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/number-line-configure@7.0.1...@pie-element/number-line-configure@7.0.2) (2024-02-20)
7
18
 
8
19
 
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@pie-element/number-line-configure",
3
3
  "private": true,
4
- "version": "7.0.2",
4
+ "version": "7.1.0",
5
5
  "main": "lib/index.js",
6
6
  "module": "src/index.js",
7
7
  "dependencies": {
8
8
  "@material-ui/core": "^3.9.2",
9
9
  "@pie-framework/pie-configure-events": "^1.3.0",
10
- "@pie-lib/pie-toolbox": "1.7.4",
10
+ "@pie-lib/pie-toolbox": "1.8.1",
11
11
  "lodash": "^4.17.15",
12
12
  "react": "^16.8.1",
13
13
  "react-dom": "^16.8.1"
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [5.4.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/number-line-controller@5.3.2...@pie-element/number-line-controller@5.4.0) (2024-03-04)
7
+
8
+
9
+ ### Features
10
+
11
+ * update pie-lib/pie-toolbox version PD-1870 and PD-3501 ([8df1d8d](https://github.com/pie-framework/pie-elements/commit/8df1d8d281a0d6023d5a9c0e6fdd29fea71b6ac1))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [5.3.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/number-line-controller@5.3.1...@pie-element/number-line-controller@5.3.2) (2024-02-20)
7
18
 
8
19
 
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pie-element/number-line-controller",
3
3
  "private": true,
4
- "version": "5.3.2",
4
+ "version": "5.4.0",
5
5
  "description": "Controller logic for @pie-ui/number-line",
6
6
  "keywords": [
7
7
  "pie",
@@ -14,7 +14,7 @@
14
14
  "access": "public"
15
15
  },
16
16
  "dependencies": {
17
- "@pie-lib/pie-toolbox": "1.7.4",
17
+ "@pie-lib/pie-toolbox": "1.8.1",
18
18
  "lodash": "^4.17.15"
19
19
  },
20
20
  "author": "",
@@ -403,6 +403,9 @@
403
403
  }
404
404
  },
405
405
  "required": [
406
+ "decimalTick",
407
+ "fractionTick",
408
+ "integerTick",
406
409
  "major",
407
410
  "minor",
408
411
  "tickIntervalType"
@@ -1271,6 +1274,9 @@
1271
1274
  }
1272
1275
  },
1273
1276
  "required": [
1277
+ "decimalTick",
1278
+ "fractionTick",
1279
+ "integerTick",
1274
1280
  "major",
1275
1281
  "minor",
1276
1282
  "tickIntervalType"
@@ -1605,6 +1611,9 @@
1605
1611
  }
1606
1612
  },
1607
1613
  "required": [
1614
+ "decimalTick",
1615
+ "fractionTick",
1616
+ "integerTick",
1608
1617
  "major",
1609
1618
  "minor",
1610
1619
  "tickIntervalType"
@@ -70,15 +70,15 @@ larger tick - These ticks have labels.
70
70
 
71
71
  Contains tick interval type Integer, Fraction, Decimal
72
72
 
73
- ### `integerTick` (number)
73
+ ### `integerTick` (number, required)
74
74
 
75
75
  Integer representation of minor.
76
76
 
77
- ### `decimalTick` (number)
77
+ ### `decimalTick` (number, required)
78
78
 
79
79
  Decimal representation of minor.
80
80
 
81
- ### `fractionTick` (string)
81
+ ### `fractionTick` (string, required)
82
82
 
83
83
  Fraction representation of minor.
84
84
 
@@ -479,15 +479,15 @@ larger tick - These ticks have labels.
479
479
 
480
480
  Contains tick interval type Integer, Fraction, Decimal
481
481
 
482
- #### `integerTick` (number)
482
+ #### `integerTick` (number, required)
483
483
 
484
484
  Integer representation of minor.
485
485
 
486
- #### `decimalTick` (number)
486
+ #### `decimalTick` (number, required)
487
487
 
488
488
  Decimal representation of minor.
489
489
 
490
- #### `fractionTick` (string)
490
+ #### `fractionTick` (string, required)
491
491
 
492
492
  Fraction representation of minor.
493
493
 
@@ -601,14 +601,14 @@ larger tick - These ticks have labels.
601
601
 
602
602
  Contains tick interval type Integer, Fraction, Decimal
603
603
 
604
- ### `integerTick` (number)
604
+ ### `integerTick` (number, required)
605
605
 
606
606
  Integer representation of minor.
607
607
 
608
- ### `decimalTick` (number)
608
+ ### `decimalTick` (number, required)
609
609
 
610
610
  Decimal representation of minor.
611
611
 
612
- ### `fractionTick` (string)
612
+ ### `fractionTick` (string, required)
613
613
 
614
614
  Fraction representation of minor.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pie-element/number-line",
3
- "version": "8.0.4-next.9+0e3bad244",
3
+ "version": "8.1.0",
4
4
  "repository": "pie-framework/pie-elements",
5
5
  "description": "",
6
6
  "publishConfig": {
@@ -8,7 +8,7 @@
8
8
  },
9
9
  "dependencies": {
10
10
  "@material-ui/core": "^3.9.2",
11
- "@pie-lib/pie-toolbox": "1.7.4",
11
+ "@pie-lib/pie-toolbox": "1.8.1",
12
12
  "classnames": "^2.2.5",
13
13
  "d3-scale": "^3.2.1",
14
14
  "d3-selection": "^1.4.1",
@@ -23,7 +23,7 @@
23
23
  },
24
24
  "author": "pie framework developers",
25
25
  "license": "ISC",
26
- "gitHead": "0e3bad2448efb7228818808395371d5c4df6fca1",
26
+ "gitHead": "95bab062051a7c74c61eb71aa076e78bff998488",
27
27
  "scripts": {
28
28
  "postpublish": "../../scripts/postpublish"
29
29
  },