@phillips/seldon 1.126.0 → 1.127.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.
@@ -21,6 +21,11 @@ export declare const Playground: {
21
21
  type: string;
22
22
  };
23
23
  };
24
+ isDisabled: {
25
+ control: {
26
+ type: string;
27
+ };
28
+ };
24
29
  onChange: {
25
30
  action: string;
26
31
  };
@@ -52,6 +57,11 @@ export declare const StringOptionsPlayground: {
52
57
  type: string;
53
58
  };
54
59
  };
60
+ isDisabled: {
61
+ control: {
62
+ type: string;
63
+ };
64
+ };
55
65
  onChange: {
56
66
  action: string;
57
67
  };
@@ -82,6 +92,11 @@ export declare const AsyncPlayground: {
82
92
  type: string;
83
93
  };
84
94
  };
95
+ isDisabled: {
96
+ control: {
97
+ type: string;
98
+ };
99
+ };
85
100
  onChange: {
86
101
  action: string;
87
102
  };
@@ -84,6 +84,32 @@
84
84
  z-index: -2;
85
85
  }
86
86
 
87
+ &:focus-visible {
88
+ background-color: $pure-white;
89
+ outline-color: $soft-black;
90
+ }
91
+
92
+ svg {
93
+ fill: $pure-black;
94
+
95
+ path {
96
+ fill: $pure-black;
97
+ }
98
+ }
99
+ }
100
+
101
+ &--secondary {
102
+ transition: box-shadow 0.25s;
103
+
104
+ &:hover {
105
+ background-color: transparent;
106
+ box-shadow: 0 0 0 1px rgba(0, 0, 0, 100%);
107
+ }
108
+ }
109
+
110
+ &--ghost {
111
+ border-color: transparent;
112
+
87
113
  &:hover {
88
114
  background-color: transparent;
89
115
  border: 1px solid transparent;
@@ -105,23 +131,6 @@
105
131
  width: 100%;
106
132
  }
107
133
  }
108
-
109
- &:focus-visible {
110
- background-color: $pure-white;
111
- outline-color: $soft-black;
112
- }
113
-
114
- svg {
115
- fill: $pure-black;
116
-
117
- path {
118
- fill: $pure-black;
119
- }
120
- }
121
- }
122
-
123
- &--ghost {
124
- border-color: transparent;
125
134
  }
126
135
 
127
136
  &--tertiary {
@@ -6,13 +6,18 @@
6
6
  flex-direction: row;
7
7
  gap: $spacing-xsm;
8
8
 
9
- &__button {
9
+ .#{$px}-pagination__button {
10
10
  &:disabled {
11
11
  border: unset;
12
12
  }
13
13
 
14
14
  &--is-disabled {
15
+ opacity: 0.15;
15
16
  pointer-events: none;
17
+
18
+ svg path {
19
+ fill: $pure-black;
20
+ }
16
21
  }
17
22
 
18
23
  &:hover:not(:disabled) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@phillips/seldon",
3
- "version": "1.126.0",
3
+ "version": "1.127.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/PhillipsAuctionHouse/seldon"