@janiscommerce/ui-web 0.13.0 → 0.15.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 +12 -0
- package/dist/index.umd.js +8 -3
- package/dist/index.umd.js.map +1 -1
- package/dist/package.json +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.15.0] - 2024-04-22
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- New colors in theme
|
|
15
|
+
|
|
16
|
+
## [0.14.0] - 2024-04-22
|
|
17
|
+
|
|
18
|
+
### Added
|
|
19
|
+
|
|
20
|
+
- New colors in theme
|
|
21
|
+
|
|
10
22
|
## [0.13.0] - 2024-03-09
|
|
11
23
|
|
|
12
24
|
### Removed
|
package/dist/index.umd.js
CHANGED
|
@@ -552,9 +552,9 @@
|
|
|
552
552
|
blackHover: '#585858',
|
|
553
553
|
blackPressed: '#16232D',
|
|
554
554
|
blue: '#2979FF',
|
|
555
|
+
blueDisabled: '#93BBFF',
|
|
555
556
|
blueHover: '#5393FF',
|
|
556
557
|
bluePressed: '#1759FF',
|
|
557
|
-
blueDisabled: '#93BBFF',
|
|
558
558
|
darkGrey: '#939598',
|
|
559
559
|
darkGreyHover: '#A8AAAC',
|
|
560
560
|
darkGreyPressed: '#747679',
|
|
@@ -579,14 +579,19 @@
|
|
|
579
579
|
red: '#F13B70',
|
|
580
580
|
redHover: '#F3628C',
|
|
581
581
|
redPressed: '#EB2450',
|
|
582
|
+
skyBlue: '#02BFFB',
|
|
583
|
+
skyBluePressed: '#00A6FA',
|
|
582
584
|
statusRed: '#FF4343',
|
|
583
585
|
statusRedHover: '#FF6868',
|
|
584
586
|
statusRedPressed: '#FF2A2A',
|
|
587
|
+
transparentWhite: 'rgba(256, 256, 256, 0.5)',
|
|
588
|
+
violet: '#BB98F1',
|
|
589
|
+
violetHover: '#A06CEC',
|
|
590
|
+
violetPressed: '#8848E7',
|
|
585
591
|
white: '#FFF',
|
|
586
592
|
yellow: '#FFCE17',
|
|
587
593
|
yellowHover: '#FFD745',
|
|
588
|
-
yellowPressed: '#FFBA0C'
|
|
589
|
-
transparentWhite: 'rgba(256, 256, 256, 0.5)'
|
|
594
|
+
yellowPressed: '#FFBA0C'
|
|
590
595
|
};
|
|
591
596
|
|
|
592
597
|
/**
|