jiffy-ui 1.0.8 → 1.1.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.
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ declare const FlexLayoutDemo: React.FC;
3
+ export default FlexLayoutDemo;
@@ -13,10 +13,8 @@ export { default as Card } from './Card/Card';
13
13
  export { default as CopyClipboard } from './CopyClipboard/CopyClipboard';
14
14
  export { default as Divider } from './Divider/Divider';
15
15
  export { default as Dropdown } from './Dropdown/Dropdown';
16
- export { default as FlexItem } from './FlexItem/FlexItem';
17
16
  export { default as FlexLayout } from './FlexLayout/FlexLayout';
18
17
  export { FlexLayoutItem } from './FlexLayout/FlexLayout';
19
- export type { FlexLayoutProps, FlexLayoutItemProps } from './FlexLayout/FlexLayout';
20
18
  export { default as Grid } from './Grid/Grid';
21
19
  export { default as Indicator } from './Indicator/Indicator';
22
20
  export { default as Checkbox } from './Input/Checkbox/Checkbox';
package/dist/index.css CHANGED
@@ -3740,7 +3740,7 @@ label.spinner-label {
3740
3740
  }
3741
3741
 
3742
3742
  /* Container - Main flex container */
3743
- .row {
3743
+ /* .row {
3744
3744
  --bs-gutter-x: 1.5rem;
3745
3745
  --bs-gutter-y: 0;
3746
3746
  display: flex;
@@ -3749,24 +3749,41 @@ label.spinner-label {
3749
3749
  margin-right: calc(-.5 * var(--bs-gutter-x));
3750
3750
  margin-left: calc(-.5 * var(--bs-gutter-x));
3751
3751
  }
3752
+
3753
+ .row > * {
3754
+ flex-shrink: 0;
3755
+ width: 100%;
3756
+ max-width: 100%;
3757
+ padding-right: calc(var(--bs-gutter-x) * .5);
3758
+ padding-left: calc(var(--bs-gutter-x) * .5);
3759
+ margin-top: var(--bs-gutter-y);
3760
+ } */
3761
+ .row > .col {
3762
+ flex-shrink: 0;
3763
+ padding-right: calc(var(--bs-gutter-x) * .5);
3764
+ padding-left: calc(var(--bs-gutter-x) * .5);
3765
+ margin-top: var(--bs-gutter-y);
3766
+ }
3767
+
3768
+ .row {
3769
+ display: flex;
3770
+ display: -webkit-flex;
3771
+ -webkit-box-orient: horizontal;
3772
+ display: flex;
3773
+ flex-wrap: wrap;
3774
+ margin-top: calc(-1 * var(--bs-gutter-y));
3775
+ margin-right: calc(-.5 * var(--bs-gutter-x));
3776
+ margin-left: calc(-.5 * var(--bs-gutter-x));
3777
+ }
3752
3778
  .flex-container {
3753
3779
  margin-right: calc(.5 * var(--bs-gutter-x));
3754
3780
  margin-left: calc(.5 * var(--bs-gutter-x));
3755
3781
  }
3756
3782
  /* Column base styles */
3757
- .col {
3758
- flex: 1 0 0%;
3759
- }
3760
-
3761
3783
  .col,
3762
3784
  .col-1, .col-2, .col-3, .col-4, .col-5, .col-6,
3763
3785
  .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
3764
- flex-shrink: 0;
3765
- width: 100%;
3766
- max-width: 100%;
3767
- padding-right: calc(var(--bs-gutter-x) * .5);
3768
- padding-left: calc(var(--bs-gutter-x) * .5);
3769
- margin-top: var(--bs-gutter-y);
3786
+ /* flex: 1 0 0%; */
3770
3787
  }
3771
3788
 
3772
3789
  /* Column widths */