@omnsight/osint-entity-components 0.2.2 → 0.2.3

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
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "0.2.2",
6
+ "version": "0.2.3",
7
7
  "engines": {
8
8
  "node": ">=24.0.0"
9
9
  },
@@ -31,7 +31,6 @@ export const EventIconSelector: React.FC<EventIconSelectorProps> = ({
31
31
  value={value ?? ""}
32
32
  onChange={onChange}
33
33
  data={translatedOptions}
34
- style={{ flex: 1 }}
35
34
  error={error}
36
35
  />
37
36
  );
@@ -64,7 +63,6 @@ export const EventColorSelector: React.FC<EventColorSelectorProps> = ({
64
63
  value={value ?? ""}
65
64
  onChange={onChange}
66
65
  swatches={colors}
67
- style={{ flex: 1 }}
68
66
  error={error}
69
67
  />
70
68
  );
@@ -29,7 +29,6 @@ export const OrganizationIconSelector: React.FC<
29
29
  onChange={onChange}
30
30
  data={translatedOptions}
31
31
  error={error}
32
- style={{ flex: 1 }}
33
32
  />
34
33
  );
35
34
  };
@@ -59,7 +58,6 @@ export const OrganizationColorSelector: React.FC<
59
58
  value={value ?? ""}
60
59
  onChange={onChange}
61
60
  swatches={colors}
62
- style={{ flex: 1 }}
63
61
  error={error}
64
62
  />
65
63
  );
@@ -31,7 +31,6 @@ export const PersonIconSelector: React.FC<PersonIconSelectorProps> = ({
31
31
  value={value ?? ""}
32
32
  onChange={onChange}
33
33
  data={translatedOptions}
34
- style={{ flex: 1 }}
35
34
  error={error}
36
35
  />
37
36
  );
@@ -64,7 +63,6 @@ export const PersonColorSelector: React.FC<PersonColorSelectorProps> = ({
64
63
  value={value ?? ""}
65
64
  onChange={onChange}
66
65
  swatches={colors}
67
- style={{ flex: 1 }}
68
66
  error={error}
69
67
  />
70
68
  );
@@ -31,7 +31,6 @@ export const SourceIconSelector: React.FC<SourceIconSelectorProps> = ({
31
31
  value={value ?? ""}
32
32
  onChange={onChange}
33
33
  data={translatedOptions}
34
- style={{ flex: 1 }}
35
34
  error={error}
36
35
  />
37
36
  );
@@ -64,7 +63,6 @@ export const SourceColorSelector: React.FC<SourceColorSelectorProps> = ({
64
63
  value={value ?? ""}
65
64
  onChange={onChange}
66
65
  swatches={colors}
67
- style={{ flex: 1 }}
68
66
  error={error}
69
67
  />
70
68
  );
@@ -31,7 +31,6 @@ export const WebsiteIconSelector: React.FC<WebsiteIconSelectorProps> = ({
31
31
  value={value ?? ""}
32
32
  onChange={onChange}
33
33
  data={translatedOptions}
34
- style={{ flex: 1 }}
35
34
  error={error}
36
35
  />
37
36
  );
@@ -64,7 +63,6 @@ export const WebsiteColorSelector: React.FC<WebsiteColorSelectorProps> = ({
64
63
  value={value ?? ""}
65
64
  onChange={onChange}
66
65
  swatches={colors}
67
- style={{ flex: 1 }}
68
66
  error={error}
69
67
  />
70
68
  );