@narmi/design_system 3.32.6 → 3.34.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/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/style.css +3 -3
- package/dist/style.css.map +1 -1
- package/dist/tokens/css/rgbColors.css +1 -1
- package/dist/tokens/css/tokens.css +1 -1
- package/dist/tokens/js/colors.js +1 -1
- package/dist/tokens/js/manifest.js +1 -1
- package/dist/tokens/js/reactNativeWeb.js +1 -1
- package/dist/types/index.d.ts +20 -0
- package/package.json +1 -1
package/dist/tokens/js/colors.js
CHANGED
package/dist/types/index.d.ts
CHANGED
|
@@ -19,3 +19,23 @@ declare module "SeparatorList/index" {
|
|
|
19
19
|
const SeparatorList: React.FC<SeparatorListProps>;
|
|
20
20
|
export default SeparatorList;
|
|
21
21
|
}
|
|
22
|
+
declare module "Slider/Thumbs" {
|
|
23
|
+
const Thumbs: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
24
|
+
export default Thumbs;
|
|
25
|
+
}
|
|
26
|
+
declare module "Slider/index" {
|
|
27
|
+
interface Props {
|
|
28
|
+
label: string;
|
|
29
|
+
output?: string;
|
|
30
|
+
higherName?: string;
|
|
31
|
+
lowerName?: string;
|
|
32
|
+
formatOptions: Intl.NumberFormatOptions;
|
|
33
|
+
maxValue: number;
|
|
34
|
+
defaultValue?: number[];
|
|
35
|
+
step: number;
|
|
36
|
+
value?: number[];
|
|
37
|
+
onChange?: (value: number[]) => void;
|
|
38
|
+
}
|
|
39
|
+
const Slider: (props: Props) => import("react/jsx-runtime").JSX.Element;
|
|
40
|
+
export default Slider;
|
|
41
|
+
}
|