@sphereon/ui-components.core 0.1.3-unstable.15 → 0.1.3-unstable.19

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.
@@ -14,4 +14,6 @@ type Border = 'dark' | 'light' | 'lightGrey';
14
14
  export declare const borderColors: Record<Border, string>;
15
15
  type Profile = 100 | 200 | 300 | 400 | 500;
16
16
  export declare const profileColors: Record<Profile, string>;
17
+ type SelectionElement = 'primaryDark' | 'primaryBorderDark';
18
+ export declare const selectionElements: Record<SelectionElement, string>;
17
19
  export {};
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  exports.__esModule = true;
3
- exports.profileColors = exports.borderColors = exports.gradientColors = exports.fontColors = exports.statusColors = exports.logoColors = exports.credentialCardColors = exports.backgroundColors = void 0;
3
+ exports.selectionElements = exports.profileColors = exports.borderColors = exports.gradientColors = exports.fontColors = exports.statusColors = exports.logoColors = exports.credentialCardColors = exports.backgroundColors = void 0;
4
4
  exports.backgroundColors = {
5
5
  primaryDark: '#202537',
6
6
  secondaryDark: '#2C334B',
@@ -45,3 +45,7 @@ exports.profileColors = {
45
45
  400: '#0B81FF',
46
46
  500: '#BD2DFF'
47
47
  };
48
+ exports.selectionElements = {
49
+ primaryDark: '#0B81FF',
50
+ primaryBorderDark: '#FBFBFB'
51
+ };
@@ -1,3 +1,4 @@
1
1
  export * from './credential';
2
2
  export * from './image';
3
3
  export * from './localization';
4
+ export * from './style';
@@ -17,3 +17,4 @@ exports.__esModule = true;
17
17
  __exportStar(require("./credential"), exports);
18
18
  __exportStar(require("./image"), exports);
19
19
  __exportStar(require("./localization"), exports);
20
+ __exportStar(require("./style"), exports);
@@ -0,0 +1,3 @@
1
+ export declare enum OpacityStyleEnum {
2
+ DISABLED = 0.5
3
+ }
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ exports.__esModule = true;
3
+ exports.OpacityStyleEnum = void 0;
4
+ var OpacityStyleEnum;
5
+ (function (OpacityStyleEnum) {
6
+ OpacityStyleEnum[OpacityStyleEnum["DISABLED"] = 0.5] = "DISABLED";
7
+ })(OpacityStyleEnum = exports.OpacityStyleEnum || (exports.OpacityStyleEnum = {}));
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sphereon/ui-components.core",
3
3
  "private": false,
4
- "version": "0.1.3-unstable.15+88a373a",
4
+ "version": "0.1.3-unstable.19+6852c02",
5
5
  "description": "SSI UI components Core",
6
6
  "repository": "git@github.com:Sphereon-Opensource/UI-Components.git",
7
7
  "author": "Sphereon <dev@sphereon.com>",
@@ -43,5 +43,5 @@
43
43
  "peerDependencies": {
44
44
  "react": ">= 16.8.0"
45
45
  },
46
- "gitHead": "88a373a5f9fb7b863e412030eedc651350c99187"
46
+ "gitHead": "6852c02ac31e72b4556a910238bec3fd785532ea"
47
47
  }