forstok-ui-lib 6.2.10 → 6.2.11
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.d.ts +4 -1
- package/dist/index.js +272 -218
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +272 -218
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/assets/stylesheets/shares.styles.ts +55 -0
package/package.json
CHANGED
|
@@ -2560,6 +2560,61 @@ export const TableItemWrapper = styled.section<{ $mode: string, $isBorder?: bool
|
|
|
2560
2560
|
}
|
|
2561
2561
|
${getTableItemWrapperModFunc}
|
|
2562
2562
|
`
|
|
2563
|
+
export const UpdateContainer = styled.section<{ $mode?: 'notif' }>`
|
|
2564
|
+
${responseWidth}
|
|
2565
|
+
position: relative;
|
|
2566
|
+
display: grid;
|
|
2567
|
+
grid-auto-flow: column;
|
|
2568
|
+
text-align: right;
|
|
2569
|
+
grid-gap: 5px;
|
|
2570
|
+
margin: 0 0.625em;
|
|
2571
|
+
justify-content: center;
|
|
2572
|
+
width: auto;
|
|
2573
|
+
border-radius: .5rem;
|
|
2574
|
+
align-items: center;
|
|
2575
|
+
align-content: center;
|
|
2576
|
+
padding: .5em 10px;
|
|
2577
|
+
> section {
|
|
2578
|
+
justify-content: center;
|
|
2579
|
+
}
|
|
2580
|
+
> div {
|
|
2581
|
+
display: grid;
|
|
2582
|
+
grid-gap: 6px;
|
|
2583
|
+
grid-auto-flow: column;
|
|
2584
|
+
line-height: 20px;
|
|
2585
|
+
align-items: center;
|
|
2586
|
+
}
|
|
2587
|
+
@media only screen and (min-width: 375px) {
|
|
2588
|
+
margin: 0 20px;
|
|
2589
|
+
}
|
|
2590
|
+
@media only screen and (min-width: 1024px) {
|
|
2591
|
+
margin: 0 18px;
|
|
2592
|
+
}
|
|
2593
|
+
@media only screen and (min-width: 1800px) {
|
|
2594
|
+
margin: 0 29px;
|
|
2595
|
+
}
|
|
2596
|
+
|
|
2597
|
+
${({ $mode }) => $mode === 'notif' && css`
|
|
2598
|
+
background-color: #FBE3E1;
|
|
2599
|
+
border: 1px solid var(--act-clr-ln);
|
|
2600
|
+
> section {
|
|
2601
|
+
color: #FF585C;
|
|
2602
|
+
text-align: center;
|
|
2603
|
+
align-items: center;
|
|
2604
|
+
span {
|
|
2605
|
+
line-height: 20px;
|
|
2606
|
+
}
|
|
2607
|
+
> a {
|
|
2608
|
+
justify-self: center;
|
|
2609
|
+
}
|
|
2610
|
+
}
|
|
2611
|
+
`}
|
|
2612
|
+
|
|
2613
|
+
${({ $mode }) => !$mode && css`
|
|
2614
|
+
background-color: #FFFFEE;
|
|
2615
|
+
border: 1px solid var(--lay-clr-ln);
|
|
2616
|
+
`}
|
|
2617
|
+
`
|
|
2563
2618
|
export const CollapseContainer = styled.div<{ $mode?: 'nav' }>`
|
|
2564
2619
|
position: relative;
|
|
2565
2620
|
top: 0;
|