lupine.web 1.0.16 → 1.0.17
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/package.json +1 -5
- package/src/core/bind-lang.ts +6 -5
- package/src/core/bind-links.ts +2 -2
- package/src/core/bind-theme.ts +6 -5
- package/src/core/export-lupine.ts +64 -0
- package/src/core/index.ts +2 -1
- package/src/core/{core.ts → initialize.ts} +9 -67
- package/src/core/page-router.ts +3 -2
- package/src/core/server-cookie.ts +5 -3
- package/src/index.ts +0 -1
- package/src/lib/index.ts +2 -13
- package/src/lib/is-frontend.ts +3 -0
- package/src/styles/index.ts +0 -5
- package/src/components/button-push-animation.tsx +0 -138
- package/src/components/button.tsx +0 -55
- package/src/components/drag-refresh.tsx +0 -110
- package/src/components/editable-label.tsx +0 -83
- package/src/components/float-window.tsx +0 -226
- package/src/components/grid.tsx +0 -18
- package/src/components/html-var.tsx +0 -41
- package/src/components/index.ts +0 -36
- package/src/components/input-with-title.tsx +0 -24
- package/src/components/link-item.tsx +0 -13
- package/src/components/link-list.tsx +0 -62
- package/src/components/menu-bar.tsx +0 -220
- package/src/components/menu-item-props.tsx +0 -10
- package/src/components/menu-sidebar.tsx +0 -289
- package/src/components/message-box.tsx +0 -44
- package/src/components/meta-data.tsx +0 -36
- package/src/components/meta-description.tsx +0 -12
- package/src/components/modal.tsx +0 -29
- package/src/components/notice-message.tsx +0 -119
- package/src/components/page-title.tsx +0 -6
- package/src/components/paging-link.tsx +0 -100
- package/src/components/panel.tsx +0 -21
- package/src/components/popup-menu.tsx +0 -218
- package/src/components/progress.tsx +0 -91
- package/src/components/redirect.tsx +0 -19
- package/src/components/resizable-splitter.tsx +0 -129
- package/src/components/select-with-title.tsx +0 -37
- package/src/components/spinner.tsx +0 -100
- package/src/components/svg.tsx +0 -24
- package/src/components/tabs.tsx +0 -252
- package/src/components/text-glow.tsx +0 -36
- package/src/components/text-wave.tsx +0 -54
- package/src/components/theme-selector.tsx +0 -32
- package/src/components/toggle-base.tsx +0 -260
- package/src/components/toggle-switch.tsx +0 -156
- package/src/lib/date-utils.ts +0 -317
- package/src/lib/deep-merge.ts +0 -37
- package/src/lib/document-ready.ts +0 -36
- package/src/lib/dom/calculate-text-width.ts +0 -13
- package/src/lib/dom/download-stream.ts +0 -17
- package/src/lib/dom/download.ts +0 -12
- package/src/lib/dom/index.ts +0 -71
- package/src/lib/dynamical-load.ts +0 -138
- package/src/lib/format-bytes.ts +0 -11
- package/src/lib/lite-dom.ts +0 -227
- package/src/lib/message-hub.ts +0 -105
- package/src/lib/observable.ts +0 -188
- package/src/lib/promise-timeout.ts +0 -1
- package/src/lib/simple-storage.ts +0 -40
- package/src/lib/stop-propagation.ts +0 -7
- package/src/lib/upload-file.ts +0 -68
- package/src/styles/base-themes.ts +0 -17
- package/src/styles/dark-themes.ts +0 -86
- package/src/styles/light-themes.ts +0 -93
- package/src/styles/media-query.ts +0 -93
- package/src/styles/shared-themes.ts +0 -52
- /package/src/lib/{dom/cookie.ts → cookie.ts} +0 -0
|
@@ -1,86 +0,0 @@
|
|
|
1
|
-
import { sharedThemes } from './shared-themes';
|
|
2
|
-
import { ThemeProps } from '../models';
|
|
3
|
-
|
|
4
|
-
export const darkThemes: ThemeProps = {
|
|
5
|
-
...sharedThemes,
|
|
6
|
-
'--theme-name': 'dark',
|
|
7
|
-
|
|
8
|
-
'--scrollbar-bg': '#1c1c1c',
|
|
9
|
-
'--scrollbar-thumb-bg': '#373636',
|
|
10
|
-
'--scrollbar-active-thumb-bg': '#5b5b5b',
|
|
11
|
-
|
|
12
|
-
'--primary-color': '#aeaeae',
|
|
13
|
-
'--primary-color-disabled': '#7d7d7d',
|
|
14
|
-
'--primary-bg-color': '#000000',
|
|
15
|
-
'--primary-border-color': '#aeaeae',
|
|
16
|
-
'--primary-border': '1px solid var(--primary-border-color)',
|
|
17
|
-
// '--secondary-color': '#b3b3b3',
|
|
18
|
-
// '--secondary-bg-color': '#151515',
|
|
19
|
-
// '--secondary-border': '1px solid #303030',
|
|
20
|
-
'--primary-opacity': '0.5', // used for dark theme
|
|
21
|
-
'--primary-disabled-opacity': '0.7', // used for dark theme
|
|
22
|
-
'--primary-accent-color': '#0c3c63', // used for radio and checkbox's background color
|
|
23
|
-
|
|
24
|
-
// including menus, tabs
|
|
25
|
-
'--activatable-color-normal': 'var(--primary-color)',
|
|
26
|
-
'--activatable-bg-color-normal': 'var(--primary-bg-color)',
|
|
27
|
-
'--activatable-color-hover': '#e2e2e2',
|
|
28
|
-
'--activatable-bg-color-hover': '#6d6d6d',
|
|
29
|
-
'--activatable-color-selected': '#c2c2c2',
|
|
30
|
-
'--activatable-bg-color-selected': '#5d5d5d',
|
|
31
|
-
// '--menu-color-hover': '#303030',
|
|
32
|
-
// '--menu-color': 'var(--primary-color)', //'#2a2a2a',
|
|
33
|
-
// '--menu-bg-color': 'var(--primary-bg-color)', //'#2a2a2a',
|
|
34
|
-
// '--menu-bg-color-hover': '#a0a0a0',
|
|
35
|
-
'--menu-font-size': '1rem',
|
|
36
|
-
'--menubar-color': '#eeeeee',
|
|
37
|
-
'--menubar-bg-color': '#000000',
|
|
38
|
-
'--menubar-sub-bg-color': '#f9f9f9',
|
|
39
|
-
'--sidebar-color': 'var(--primary-color)',
|
|
40
|
-
'--sidebar-bg-color': '#000000',
|
|
41
|
-
// '--sidebar-sub-color': 'var(--sidebar-color)',
|
|
42
|
-
// '--sidebar-sub-bg-color': '#000000',
|
|
43
|
-
'--sidebar-border': '1px solid #303030',
|
|
44
|
-
// '--sidebar-hover-color': 'var(--sidebar-color)',
|
|
45
|
-
// '--sidebar-hover-bg-color': '#000000',
|
|
46
|
-
|
|
47
|
-
'--row-1-bg-color': '#212121',
|
|
48
|
-
'--row-2-bg-color': '#303030',
|
|
49
|
-
'--row-hover-bg-color': '#383838',
|
|
50
|
-
|
|
51
|
-
'--success-color': '#04AA6D',
|
|
52
|
-
'--info-color': '#2196F3',
|
|
53
|
-
'--warning-color': '#ff9800',
|
|
54
|
-
'--error-color': '#f44336',
|
|
55
|
-
'--success-bg-color': '#10553b',
|
|
56
|
-
'--info-bg-color': '#1a588a',
|
|
57
|
-
'--warning-bg-color': '#a36305',
|
|
58
|
-
'--error-bg-color': '#882c25',
|
|
59
|
-
'--notice-color-with-bg': '#ececec',
|
|
60
|
-
|
|
61
|
-
'--cover-mask-bg-color': '#878a9460',
|
|
62
|
-
'--cover-bg-color': '#202020',
|
|
63
|
-
'--cover-box-shadow': '1px 1px 4px #c6c6c6',
|
|
64
|
-
|
|
65
|
-
'--input-color': '#bdbdbd',
|
|
66
|
-
'--input-bg-color': '#000000',
|
|
67
|
-
'--input-box-shadow': '0px 0px 0px #000000, 1px 1px 0px 0px #50505045',
|
|
68
|
-
'--input-border-focus': '1px solid #0074d9',
|
|
69
|
-
|
|
70
|
-
'--button-color': '#bdbdbd',
|
|
71
|
-
'--button-bg': '-webkit-linear-gradient(top, #282828 0%, #212223 74%, #1a1a1a 100%)', // darker
|
|
72
|
-
'--button-bg-hover': '-webkit-linear-gradient(top, #282828 0%, #313233 74%, #252525 100%)', // darker
|
|
73
|
-
// '--button-bg': '-webkit-linear-gradient(top, #414141 0%, #373e48 74%, #434242 100%)',
|
|
74
|
-
'--button-border': '1px solid #373e48',
|
|
75
|
-
'--button-box-shadow': 'unset',
|
|
76
|
-
|
|
77
|
-
'--header-color': '#000080',
|
|
78
|
-
'--header-bg-color': '#000000',
|
|
79
|
-
|
|
80
|
-
// '--background-primary': '#353536', // Primary background
|
|
81
|
-
// '--color-primary': '#e0e0e0', // Primary text color
|
|
82
|
-
// backgroundPrimary: '', // Primary background
|
|
83
|
-
// backgroundOnPrimary: '', // Background for surfaces on top of primary background
|
|
84
|
-
// backgroundSecondary: '#f5f5f6', // Secondary background
|
|
85
|
-
// backgroundOnSecondary: '#e5e5e6', // Background for surfaces on top of secondary background
|
|
86
|
-
};
|
|
@@ -1,93 +0,0 @@
|
|
|
1
|
-
import { sharedThemes } from './shared-themes';
|
|
2
|
-
import { ThemeProps } from '../models';
|
|
3
|
-
|
|
4
|
-
export const lightThemes: ThemeProps = {
|
|
5
|
-
...sharedThemes,
|
|
6
|
-
'--theme-name': 'light',
|
|
7
|
-
|
|
8
|
-
// scroll bar
|
|
9
|
-
'--scrollbar-bg': '#d5d5d5',
|
|
10
|
-
'--scrollbar-thumb-bg': '#979797',
|
|
11
|
-
'--scrollbar-active-thumb-bg': '#737373',
|
|
12
|
-
|
|
13
|
-
'--primary-color': '#303030',
|
|
14
|
-
'--primary-color-disabled': '#a0a0a0',
|
|
15
|
-
'--primary-bg-color': '#ffffff',
|
|
16
|
-
'--primary-border-color': '#858585',
|
|
17
|
-
'--primary-border': '1px solid var(--primary-border-color)',
|
|
18
|
-
// '--secondary-color': '#505050',
|
|
19
|
-
// '--secondary-bg-color': '#ffffff',
|
|
20
|
-
// '--secondary-border': '1px solid #858585',
|
|
21
|
-
'--primary-opacity': 'unset', // used for dark theme
|
|
22
|
-
'--primary-disabled-opacity': '0.5', // used for dark theme
|
|
23
|
-
'--primary-accent-color': '#0a74c9', // used for radio and checkbox's background color
|
|
24
|
-
|
|
25
|
-
// including menus, tabs, sidebars
|
|
26
|
-
'--activatable-color-normal': 'var(--primary-color)',
|
|
27
|
-
'--activatable-bg-color-normal': 'var(--primary-bg-color)',
|
|
28
|
-
'--activatable-color-hover': '#1d1d1d',
|
|
29
|
-
'--activatable-bg-color-hover': '#bcbcbc',
|
|
30
|
-
'--activatable-color-selected': '#2d2d2d',
|
|
31
|
-
'--activatable-bg-color-selected': '#dcdcdc',
|
|
32
|
-
// '--menu-color-hover': '#303030',
|
|
33
|
-
// '--menu-bg-color': '#ffffff',
|
|
34
|
-
// '--menu-bg-color-hover': '#a0a0a0',
|
|
35
|
-
'--menu-font-size': '1rem',
|
|
36
|
-
'--menubar-color': '#eeeeee',
|
|
37
|
-
'--menubar-bg-color': '#000000',
|
|
38
|
-
'--menubar-sub-bg-color': '#f9f9f9',
|
|
39
|
-
'--sidebar-color': 'var(--primary-color)',
|
|
40
|
-
'--sidebar-bg-color': '#f4f3f4',
|
|
41
|
-
// '--sidebar-sub-color': 'var(--sidebar-color)',
|
|
42
|
-
// '--sidebar-sub-bg-color': '#eaeaea',
|
|
43
|
-
'--sidebar-border': '1px solid #858585',
|
|
44
|
-
// '--sidebar-hover-color': 'var(--sidebar-color)',
|
|
45
|
-
// '--sidebar-hover-bg-color': '#e0e0e0',
|
|
46
|
-
|
|
47
|
-
'--row-bg-color1': '#ffffff',
|
|
48
|
-
'--row-bg-color2': '#ffffff',
|
|
49
|
-
|
|
50
|
-
'--success-color': '#04AA6D',
|
|
51
|
-
'--info-color': '#2196F3',
|
|
52
|
-
'--warning-color': '#ff9800',
|
|
53
|
-
'--error-color': '#f44336',
|
|
54
|
-
'--success-bg-color': '#04AA6D',
|
|
55
|
-
'--info-bg-color': '#2196F3',
|
|
56
|
-
'--warning-bg-color': '#ff9800',
|
|
57
|
-
'--error-bg-color': '#f44336',
|
|
58
|
-
'--notice-color-with-bg': '#ffffff',
|
|
59
|
-
|
|
60
|
-
'--cover-mask-bg-color': '#00000060',
|
|
61
|
-
'--cover-bg-color': '#f5f5f5',
|
|
62
|
-
'--cover-box-shadow': '3px 3px 8px #767676',
|
|
63
|
-
|
|
64
|
-
// for input, checkbox, radio box, select
|
|
65
|
-
'--input-color': '#4e4e4e',
|
|
66
|
-
'--input-bg-color': '#ffffff',
|
|
67
|
-
'--input-box-shadow': '0px 0px 0px #000000, 1px 1px 0px 0px #50505045',
|
|
68
|
-
'--input-border-focus': '1px solid #0074d9',
|
|
69
|
-
|
|
70
|
-
// for button, div
|
|
71
|
-
'--button-color': '#4e4e4e',
|
|
72
|
-
'--button-bg': '-webkit-linear-gradient(top, #ffffff 0%, #f6f6f6 74%, #ededed 100%)',
|
|
73
|
-
'--button-bg-hover': '-webkit-linear-gradient(top, #ffffff 0%, #e6e6e6 74%, #dddddd 100%)',
|
|
74
|
-
'--button-border': '1px solid #f6f6f6',
|
|
75
|
-
'--button-box-shadow': '1px 1px 1px #00000085, 0px 1px 0px 2px #0705053b',
|
|
76
|
-
|
|
77
|
-
'--header-color': '#000080',
|
|
78
|
-
'--header-bg-color': '#ffffff',
|
|
79
|
-
|
|
80
|
-
// '--po-background': '#e5e5e5', // Background for surfaces on top of primary background
|
|
81
|
-
// // backgroundSecondary: '#f5f5f5', // Secondary background
|
|
82
|
-
// // backgroundOnSecondary: '#e5e5e5', // Background for surfaces on top of secondary background
|
|
83
|
-
// '--background-modifier-hover': '', // Hovered elements
|
|
84
|
-
// '--background-modifier-active-hover': '', // Active hovered elements
|
|
85
|
-
// '--background-modifier-border': '', // Border color
|
|
86
|
-
// '--background-modifier-border-hover': '', // Border color (hover)
|
|
87
|
-
// '--background-modifier-border-focus': '', // Border color (focus)
|
|
88
|
-
// '--background-modifier-error': '', // Error background
|
|
89
|
-
// '--background-modifier-error-hover': '', // Error background (hover)
|
|
90
|
-
// '--background-modifier-success': '', // Success background
|
|
91
|
-
// '--background-modifier-message': '', // Messages background
|
|
92
|
-
// '--background-modifier-form-field': '', // Form field background
|
|
93
|
-
};
|
|
@@ -1,93 +0,0 @@
|
|
|
1
|
-
// export enum MediaQuery {
|
|
2
|
-
// ExtraSmall = "@media only screen and (max-width: 480px)",
|
|
3
|
-
// Mobile = "@media only screen and (min-width: 481px) and (max-width: 767px)",
|
|
4
|
-
// Tablet = "@media only screen and (min-width: 768px) and (max-width: 991px)",
|
|
5
|
-
// Desktop = "@media only screen and (min-width: 992px) and (max-width: 1399px)",
|
|
6
|
-
// ExtraLarge = "@media only screen and (min-width: 1400px)",
|
|
7
|
-
// }
|
|
8
|
-
|
|
9
|
-
/*
|
|
10
|
-
--> Bootstrap – 576px, 768px, 992px, 1200px, 1400px
|
|
11
|
-
Tailwind - 640px, 768px, 1024px, 1280px, 1536px
|
|
12
|
-
Foundation: <640px, ≥640px, ≥1200px
|
|
13
|
-
Bulma: <769px, ≥769px, ≥1024px, ≥1216px, and ≥1408px
|
|
14
|
-
Semantic UI: <768px, ≥768px, ≥992px, ≥1400px, ≥1920px
|
|
15
|
-
Primer: <544px, ≥544px, ≥768px, ≥1012px, ≥1280px
|
|
16
|
-
UIKit: <479px, ≥480px, ≥768px, ≥960px, ≥1200px
|
|
17
|
-
*/
|
|
18
|
-
|
|
19
|
-
export class MediaQueryMaxWidth {
|
|
20
|
-
private static _ExtraSmall = '480px';
|
|
21
|
-
private static _Mobile = '767px'; // Grid: col-1, 12
|
|
22
|
-
private static _Tablet = '991px'; // Grid: col-1-md, 12-md
|
|
23
|
-
private static _Desktop = '1399px'; // Grid: col-1-lg, 12-lg
|
|
24
|
-
public static get ExtraSmallMax() {
|
|
25
|
-
return MediaQueryMaxWidth._ExtraSmall;
|
|
26
|
-
}
|
|
27
|
-
public static get MobileMax() {
|
|
28
|
-
return MediaQueryMaxWidth._Mobile;
|
|
29
|
-
}
|
|
30
|
-
public static get TabletMax() {
|
|
31
|
-
return MediaQueryMaxWidth._Tablet;
|
|
32
|
-
}
|
|
33
|
-
public static get DesktopMax() {
|
|
34
|
-
return MediaQueryMaxWidth._Desktop;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
public static set ExtraSmallMax(value: string) {
|
|
38
|
-
MediaQueryMaxWidth._ExtraSmall = value;
|
|
39
|
-
}
|
|
40
|
-
public static set MobileMax(value: string) {
|
|
41
|
-
MediaQueryMaxWidth._Mobile = value;
|
|
42
|
-
}
|
|
43
|
-
public static set TabletMax(value: string) {
|
|
44
|
-
MediaQueryMaxWidth._Tablet = value;
|
|
45
|
-
}
|
|
46
|
-
public static set DesktopMax(value: string) {
|
|
47
|
-
MediaQueryMaxWidth._Desktop = value;
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
export class MediaQueryRange {
|
|
51
|
-
public static get ExtraSmallBelow() {
|
|
52
|
-
return `@media only screen and (max-width: ${MediaQueryMaxWidth.ExtraSmallMax})`;
|
|
53
|
-
}
|
|
54
|
-
public static get ExtraSmallAbove() {
|
|
55
|
-
return `@media only screen and (min-width: ${MediaQueryMaxWidth.ExtraSmallMax})`;
|
|
56
|
-
}
|
|
57
|
-
public static get MobileBelow() {
|
|
58
|
-
return `@media only screen and (max-width: ${MediaQueryMaxWidth.MobileMax})`;
|
|
59
|
-
}
|
|
60
|
-
public static get MobileAbove() {
|
|
61
|
-
return `@media only screen and (min-width: ${MediaQueryMaxWidth.MobileMax})`;
|
|
62
|
-
}
|
|
63
|
-
public static get TabletBelow() {
|
|
64
|
-
return `@media only screen and (max-width: ${MediaQueryMaxWidth.TabletMax})`;
|
|
65
|
-
}
|
|
66
|
-
public static get TabletAbove() {
|
|
67
|
-
return `@media only screen and (min-width: ${MediaQueryMaxWidth.TabletMax})`;
|
|
68
|
-
}
|
|
69
|
-
public static get DesktopBelow() {
|
|
70
|
-
return `@media only screen and (max-width: ${MediaQueryMaxWidth.DesktopMax})`;
|
|
71
|
-
}
|
|
72
|
-
public static get DesktopAbove() {
|
|
73
|
-
return `@media only screen and (min-width: ${MediaQueryMaxWidth.DesktopMax})`;
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
export enum MediaQueryDirection {
|
|
78
|
-
Below,
|
|
79
|
-
Above,
|
|
80
|
-
}
|
|
81
|
-
export function adjustedMediaQueryRange(
|
|
82
|
-
direction: MediaQueryDirection,
|
|
83
|
-
mediaQueryWidth: string,
|
|
84
|
-
adjustWidth: number
|
|
85
|
-
): string {
|
|
86
|
-
const adjustedWidth = Number.parseInt(mediaQueryWidth) + adjustWidth;
|
|
87
|
-
if (direction === MediaQueryDirection.Below) {
|
|
88
|
-
return `@media only screen and (max-width: ${adjustedWidth}px)`;
|
|
89
|
-
} else {
|
|
90
|
-
// if (direction === MediaQueryRangeDirection.Above) {
|
|
91
|
-
return `@media only screen and (min-width: ${adjustedWidth}px)`;
|
|
92
|
-
}
|
|
93
|
-
}
|
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
import { ThemeProps } from "../models";
|
|
2
|
-
|
|
3
|
-
export const sharedThemes: ThemeProps = {
|
|
4
|
-
// z-index
|
|
5
|
-
'--layer-cover': '10',
|
|
6
|
-
'--layer-sidebar': '100',
|
|
7
|
-
'--layer-sidebar-sub': '110',
|
|
8
|
-
'--layer-float-window': '200',
|
|
9
|
-
'--layer-modal': '300',
|
|
10
|
-
'--layer-modal-over': '310',
|
|
11
|
-
'--layer-menu': '400', // popup menu
|
|
12
|
-
'--layer-menu-sub': '410',
|
|
13
|
-
'--layer-notice': '500',
|
|
14
|
-
'--layer-tooltip': '510',
|
|
15
|
-
'--layer-dragged-item': '600',
|
|
16
|
-
|
|
17
|
-
'--font-size-base': '16px',
|
|
18
|
-
'--font-weight-base': '', //'400',
|
|
19
|
-
'--font-family-base': 'SimSun, "Microsoft YaHei", Helvetica, Arial, sans-serif',
|
|
20
|
-
'--line-height-base': '1.1',
|
|
21
|
-
|
|
22
|
-
'--font-size-h1-l': '2.5rem', //40px
|
|
23
|
-
'--font-size-h1': '2rem', //32px
|
|
24
|
-
'--font-size-h2': '1.5rem', //24px
|
|
25
|
-
'--font-size-h3': '1.17rem', //18.72px
|
|
26
|
-
'--font-size-h3-5': '1.08rem', //17.28px
|
|
27
|
-
'--font-size-h4': '1rem', //16px
|
|
28
|
-
'--font-size-h4-5': '.91rem', //14.56px
|
|
29
|
-
'--font-size-h5': '.83rem', //13.28px
|
|
30
|
-
'--font-size-h6': '.67rem', //10.72px
|
|
31
|
-
'--font-size-h6-s': '.55rem', //9.28px
|
|
32
|
-
'--font-size-title': 'var(--font-size-h2)',
|
|
33
|
-
'--font-size-subtitle': 'var(--font-size-h3-5)',
|
|
34
|
-
'--font-size-paragraph': 'var(--font-size-h4)',
|
|
35
|
-
'--font-size-paragraph-s': 'var(--font-size-h5)',
|
|
36
|
-
|
|
37
|
-
'--input-height': '2.2rem',
|
|
38
|
-
'--input-padding': '.3rem .6rem',
|
|
39
|
-
'--button-height': '2.1rem',
|
|
40
|
-
'--button-padding': '.3rem .9rem',
|
|
41
|
-
|
|
42
|
-
// space for margin, padding
|
|
43
|
-
'--space-ss': '.15rem',
|
|
44
|
-
'--space-s': '.25rem',
|
|
45
|
-
'--space-m': '.5rem',
|
|
46
|
-
'--space-l': '1rem',
|
|
47
|
-
'--space-ll': '2rem',
|
|
48
|
-
|
|
49
|
-
'--border-radius-s': '2px',
|
|
50
|
-
'--border-radius-m': '4px',
|
|
51
|
-
'--border-radius-l': '8px',
|
|
52
|
-
};
|
|
File without changes
|