playbook_ui 13.12.0.pre.alpha.play10281596 → 13.13.0.pre.alpha.PLAY1090csstokens1675
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d4f5112d15fbd1aea3bd5aeed163b6daa26b0862336eceb9ec28a88aae96ae08
|
4
|
+
data.tar.gz: fdb0fa976c88bc864f92f0be7b5fb40989b66fb9207e763ebc3870397fe50c69
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5c8898ab19ba131fb88110e5fc2b238496ed3c7c7a3d62a5da7c39d8db69d78ffe9aa8e70034c7f8ec9b94ae87a79293abdbe159fa358536d61724d307b34e1f
|
7
|
+
data.tar.gz: ba5c98b0229c3f43470c57016c3fee4313bf2320f9c39351a7c302b178425fb87a6db3b7874f59abeb3a8c067edfd35205d8ef95aa0014b0a50e23da3f7ab38e
|
@@ -130,4 +130,16 @@ export { default as dialogHelper } from './pb_dialog/dialogHelper'
|
|
130
130
|
|
131
131
|
//Theming
|
132
132
|
export {default as mapTheme} from './pb_map/pbMapTheme'
|
133
|
-
export {default as useCollapsible} from './pb_collapsible/useCollapsible'
|
133
|
+
export {default as useCollapsible} from './pb_collapsible/useCollapsible'
|
134
|
+
|
135
|
+
// CSS Tokens
|
136
|
+
export { default as borderRadius } from './tokens/exports/_border_radius.scss'
|
137
|
+
export { default as colors } from './tokens/exports/_colors.scss'
|
138
|
+
export { default as lineHeight } from './tokens/exports/_line_height.scss'
|
139
|
+
export { default as opacity } from './tokens/exports/_opacity.scss'
|
140
|
+
export { default as positioning } from './tokens/exports/_positioning.scss'
|
141
|
+
export { default as scale } from './tokens/exports/_scale.scss'
|
142
|
+
export { default as screenSizes } from './tokens/exports/_screen_sizes.scss'
|
143
|
+
export { default as shadows } from './tokens/exports/_shadows.scss'
|
144
|
+
export { default as spacing } from './tokens/exports/_spacing.scss'
|
145
|
+
export { default as typography } from './tokens/exports/_typography.scss'
|
@@ -0,0 +1 @@
|
|
1
|
+
To display the "No Filters Selected" text, the `filters` prop must be `null`. As a suggestion, check the values of each key in your filters object. If they are all falsy, return `null`.
|
@@ -70,8 +70,8 @@ const TypeaheadWithHighlight = (props) => {
|
|
70
70
|
}
|
71
71
|
|
72
72
|
const customComponents = {
|
73
|
-
Option: (
|
74
|
-
<components.Option {...
|
73
|
+
Option: (highlightProps: OptionProps) => (
|
74
|
+
<components.Option {...highlightProps}/>
|
75
75
|
),
|
76
76
|
SingleValue: ({ data }: any) => (
|
77
77
|
<span>{data.name}</span>
|