@innovaccer/design-system 2.14.1 → 2.14.2-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 +42 -0
- package/css/dist/index.css +70 -10
- package/css/dist/index.css.map +1 -1
- package/css/src/components/checkbox.css +64 -8
- package/css/src/components/fileList.css +2 -2
- package/css/src/components/horizontalNav.css +4 -0
- package/dist/.lib/tsconfig.type.tsbuildinfo +49 -36
- package/dist/core/components/atoms/checkbox/Checkbox.d.ts +1 -0
- package/dist/core/components/atoms/checkbox/CheckboxIcon.d.ts +5 -0
- package/dist/core/components/atoms/popperWrapper/PopperWrapper.d.ts +2 -2
- package/dist/index.esm.js +186 -131
- package/dist/index.js +184 -129
- package/dist/index.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.br +0 -0
- package/dist/index.umd.js.gz +0 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,45 @@
|
|
|
1
|
+
## 2.14.2-0 (2023-02-07)
|
|
2
|
+
|
|
3
|
+
### Highlights
|
|
4
|
+
|
|
5
|
+
- feat(docs): add satismeter feedback form support (f880e6a8)
|
|
6
|
+
- feat(checkbox): add error state in checkbox (f9677fd5)
|
|
7
|
+
|
|
8
|
+
### Breaking changes
|
|
9
|
+
|
|
10
|
+
NA
|
|
11
|
+
|
|
12
|
+
### Migration guide
|
|
13
|
+
|
|
14
|
+
NA
|
|
15
|
+
|
|
16
|
+
### Deprecations
|
|
17
|
+
|
|
18
|
+
NA
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
- feat(docs): add satismeter feedback form support (f880e6a8)
|
|
23
|
+
- feat(checkbox): add error state in checkbox (f9677fd5)
|
|
24
|
+
|
|
25
|
+
### Fixes
|
|
26
|
+
|
|
27
|
+
- fix(docs): update cypress test for images (3108592d)
|
|
28
|
+
- fix(dropdown): add support to enable apply button on same option label selection(0e743737)
|
|
29
|
+
|
|
30
|
+
### Improvements
|
|
31
|
+
|
|
32
|
+
- fix(fileList): update color of other file type (72704373)
|
|
33
|
+
- fix(checkbox): replace checkbox icons with svg (6e179d5f)
|
|
34
|
+
- fix(stepper): update state of stepper item (e224df82)
|
|
35
|
+
- fix(horizontalNav): update focus ring on disabled state (9be66388)
|
|
36
|
+
|
|
37
|
+
### Documentation
|
|
38
|
+
|
|
39
|
+
NA
|
|
40
|
+
|
|
41
|
+
---
|
|
42
|
+
|
|
1
43
|
## 2.14.1-1 (2023-01-22)
|
|
2
44
|
|
|
3
45
|
### Highlights
|
package/css/dist/index.css
CHANGED
|
@@ -1801,8 +1801,6 @@ body {
|
|
|
1801
1801
|
display: block;
|
|
1802
1802
|
}
|
|
1803
1803
|
|
|
1804
|
-
/* badge */
|
|
1805
|
-
|
|
1806
1804
|
.Checkbox {
|
|
1807
1805
|
display: flex;
|
|
1808
1806
|
-webkit-user-select: none;
|
|
@@ -1857,13 +1855,13 @@ body {
|
|
|
1857
1855
|
.Checkbox-wrapper {
|
|
1858
1856
|
top: 0;
|
|
1859
1857
|
left: 0;
|
|
1860
|
-
border: var(--border);
|
|
1861
1858
|
border-radius: var(--spacing-s);
|
|
1862
1859
|
display: flex;
|
|
1863
1860
|
align-items: center;
|
|
1864
1861
|
box-sizing: border-box;
|
|
1865
1862
|
height: 100%;
|
|
1866
1863
|
width: 100%;
|
|
1864
|
+
justify-content: center;
|
|
1867
1865
|
transition: var(--duration--fast-01) var(--standard-productive-curve);
|
|
1868
1866
|
}
|
|
1869
1867
|
|
|
@@ -1871,25 +1869,30 @@ body {
|
|
|
1871
1869
|
outline: 0;
|
|
1872
1870
|
}
|
|
1873
1871
|
|
|
1874
|
-
.Checkbox-input
|
|
1872
|
+
.Checkbox-input ~ .Checkbox-wrapper--default {
|
|
1873
|
+
border: var(--spacing-xs) solid var(--secondary-dark);
|
|
1874
|
+
background-color: var(--shadow-0);
|
|
1875
|
+
}
|
|
1876
|
+
|
|
1877
|
+
.Checkbox-input:focus ~ .Checkbox-wrapper--default {
|
|
1875
1878
|
box-shadow: var(--shadow-spread) var(--secondary-shadow);
|
|
1876
1879
|
}
|
|
1877
1880
|
|
|
1878
|
-
.Checkbox-input:hover ~ .Checkbox-wrapper {
|
|
1881
|
+
.Checkbox-input:hover ~ .Checkbox-wrapper--default {
|
|
1879
1882
|
border: var(--spacing-xs) solid var(--inverse-lightest);
|
|
1880
1883
|
background-color: var(--shadow-0);
|
|
1881
1884
|
}
|
|
1882
1885
|
|
|
1883
|
-
.Checkbox-input:active ~ .Checkbox-wrapper {
|
|
1886
|
+
.Checkbox-input:active ~ .Checkbox-wrapper--default {
|
|
1884
1887
|
border: var(--spacing-xs) solid var(--inverse-lightest);
|
|
1885
|
-
background-color: var(--
|
|
1888
|
+
background-color: var(--secondary-light);
|
|
1886
1889
|
}
|
|
1887
1890
|
|
|
1888
1891
|
.Checkbox--disabled {
|
|
1889
1892
|
pointer-events: none;
|
|
1890
1893
|
}
|
|
1891
1894
|
|
|
1892
|
-
.Checkbox--disabled .Checkbox-wrapper {
|
|
1895
|
+
.Checkbox--disabled .Checkbox-wrapper--default {
|
|
1893
1896
|
border: var(--spacing-xs) solid var(--secondary-light);
|
|
1894
1897
|
background-color: var(--secondary-lightest);
|
|
1895
1898
|
}
|
|
@@ -1927,6 +1930,59 @@ body {
|
|
|
1927
1930
|
border: 0;
|
|
1928
1931
|
}
|
|
1929
1932
|
|
|
1933
|
+
/* Error State -> Default */
|
|
1934
|
+
|
|
1935
|
+
.Checkbox-wrapper--error {
|
|
1936
|
+
border: var(--spacing-xs) solid var(--alert);
|
|
1937
|
+
}
|
|
1938
|
+
|
|
1939
|
+
.Checkbox-input:focus ~ .Checkbox-wrapper--error {
|
|
1940
|
+
box-shadow: var(--shadow-spread) var(--alert-shadow);
|
|
1941
|
+
}
|
|
1942
|
+
|
|
1943
|
+
.Checkbox-input:hover ~ .Checkbox-wrapper--error {
|
|
1944
|
+
border: var(--spacing-xs) solid var(--alert-dark);
|
|
1945
|
+
}
|
|
1946
|
+
|
|
1947
|
+
.Checkbox-input:active ~ .Checkbox-wrapper--error {
|
|
1948
|
+
border: var(--spacing-xs) solid var(--alert-darker);
|
|
1949
|
+
background-color: var(--secondary-light);
|
|
1950
|
+
}
|
|
1951
|
+
|
|
1952
|
+
.Checkbox--disabled .Checkbox-wrapper--error {
|
|
1953
|
+
border: var(--spacing-xs) solid var(--alert-lighter);
|
|
1954
|
+
background-color: var(--secondary-lightest);
|
|
1955
|
+
}
|
|
1956
|
+
|
|
1957
|
+
/* Error State -> Checked & Indeterminate */
|
|
1958
|
+
|
|
1959
|
+
.Checkbox-input--checked ~ .Checkbox-wrapper--error,
|
|
1960
|
+
.Checkbox-input--indeterminate ~ .Checkbox-wrapper--error {
|
|
1961
|
+
border: var(--spacing-xs) solid var(--alert);
|
|
1962
|
+
}
|
|
1963
|
+
|
|
1964
|
+
.Checkbox-input--checked:focus ~ .Checkbox-wrapper--error,
|
|
1965
|
+
.Checkbox-input--indeterminate:focus ~ .Checkbox-wrapper--error {
|
|
1966
|
+
border: var(--spacing-xs) solid var(--alert);
|
|
1967
|
+
box-shadow: var(--shadow-spread) var(--primary-shadow);
|
|
1968
|
+
}
|
|
1969
|
+
|
|
1970
|
+
.Checkbox-input--checked:hover ~ .Checkbox-wrapper--error,
|
|
1971
|
+
.Checkbox-input--indeterminate:hover ~ .Checkbox-wrapper--error {
|
|
1972
|
+
border: var(--spacing-xs) solid var(--alert-dark);
|
|
1973
|
+
}
|
|
1974
|
+
|
|
1975
|
+
.Checkbox-input--checked:active ~ .Checkbox-wrapper--error,
|
|
1976
|
+
.Checkbox-input--indeterminate:active ~ .Checkbox-wrapper--error {
|
|
1977
|
+
background-color: var(--primary-darker);
|
|
1978
|
+
border: var(--spacing-xs) solid var(--alert-darker);
|
|
1979
|
+
}
|
|
1980
|
+
|
|
1981
|
+
.Checkbox--disabled .Checkbox-input--checked ~ .Checkbox-wrapper--error,
|
|
1982
|
+
.Checkbox--disabled .Checkbox-input--indeterminate ~ .Checkbox-wrapper--error {
|
|
1983
|
+
border: var(--spacing-xs) solid var(--alert-lighter);
|
|
1984
|
+
}
|
|
1985
|
+
|
|
1930
1986
|
.Chip {
|
|
1931
1987
|
display: flex;
|
|
1932
1988
|
box-sizing: border-box;
|
|
@@ -2932,8 +2988,8 @@ body {
|
|
|
2932
2988
|
color: var(--accent3);
|
|
2933
2989
|
}
|
|
2934
2990
|
.FileIcon--others {
|
|
2935
|
-
background: var(--
|
|
2936
|
-
color: var(--
|
|
2991
|
+
background: var(--success-lightest);
|
|
2992
|
+
color: var(--success);
|
|
2937
2993
|
}
|
|
2938
2994
|
.FileIcon--animate {
|
|
2939
2995
|
-webkit-animation: fadeIn var(--duration--moderate-01) var(--entrance-productive-curve);
|
|
@@ -3626,6 +3682,10 @@ body {
|
|
|
3626
3682
|
pointer-events: none;
|
|
3627
3683
|
}
|
|
3628
3684
|
|
|
3685
|
+
.HorizontalNav-menu--disabled:focus-visible {
|
|
3686
|
+
outline: none;
|
|
3687
|
+
}
|
|
3688
|
+
|
|
3629
3689
|
.HorizontalNav-menu--default:focus-visible {
|
|
3630
3690
|
box-shadow: var(--shadow-spread) var(--secondary-shadow);
|
|
3631
3691
|
outline: none;
|