@pushwoosh/dumb-components 1.1.208 → 1.1.209

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.
@@ -0,0 +1 @@
1
+ export { Divider } from './styles';
@@ -0,0 +1 @@
1
+ export { Divider } from './styles';
@@ -0,0 +1,2 @@
1
+ /** Thin horizontal separator line; spacing around it belongs to the layout, not to the divider. */
2
+ export declare const Divider: import("styled-components").StyledComponent<"hr", any, {}, never>;
@@ -0,0 +1,7 @@
1
+ import styled from 'styled-components';
2
+ import { Color } from '@pushwoosh/kit-constants';
3
+ /** Thin horizontal separator line; spacing around it belongs to the layout, not to the divider. */
4
+ export const Divider = styled.hr.withConfig({
5
+ displayName: "Divider",
6
+ componentId: "sc-16w0xah-0"
7
+ })(["width:100%;height:1px;margin:0;padding:0;border:none;background-color:", ";"], Color.DIVIDER);
package/index.d.ts CHANGED
@@ -5,6 +5,7 @@ export { Button, GhostButton, RemoveButton } from './Button';
5
5
  export { CardMetric } from './CardMetric';
6
6
  export { Checkbox } from './Checkbox';
7
7
  export { CrashScreen } from './CrashScreen';
8
+ export { Divider } from './Divider';
8
9
  export { Drawer, DrawerHeader, DrawerTitle, DrawerBody, DrawerDocs, useDocs, } from './Drawer';
9
10
  export { CalendarSuperForm, CalendarDropdown, addPeriod, compareStructs, dateToStruct, dateToStructTz, getSortedTimezones, getTimezoneOffset, getPeriodEnd, getPeriodStart, structToDate, structToDateTz, stringifyValue, pickDateStruct, type CalendarDropdownProps, type CalendarDropdownRangeDateProps, type CalendarSuperFormProps, type DateStruct, type RangeValue, type TimezoneOption, } from './Calendar';
10
11
  export { DatePicker, DatePickerField, DateTimePicker, DateTimePickerField, } from './DateTimePicker';
package/index.js CHANGED
@@ -5,6 +5,7 @@ export { Button, GhostButton, RemoveButton } from './Button';
5
5
  export { CardMetric } from './CardMetric';
6
6
  export { Checkbox } from './Checkbox';
7
7
  export { CrashScreen } from './CrashScreen';
8
+ export { Divider } from './Divider';
8
9
  export { Drawer, DrawerHeader, DrawerTitle, DrawerBody, DrawerDocs, useDocs } from './Drawer';
9
10
  export { CalendarSuperForm, CalendarDropdown, addPeriod, compareStructs, dateToStruct, dateToStructTz, getSortedTimezones, getTimezoneOffset, getPeriodEnd, getPeriodStart, structToDate, structToDateTz, stringifyValue, pickDateStruct } from './Calendar';
10
11
  export { DatePicker, DatePickerField, DateTimePicker, DateTimePickerField } from './DateTimePicker';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/dumb-components",
3
- "version": "1.1.208",
3
+ "version": "1.1.209",
4
4
  "description": "React components to build Pushwoosh products",
5
5
  "main": "index.js",
6
6
  "module": "index.js",