@telia/teddy 0.0.10 → 0.0.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/assets/badge.css +1 -1
- package/dist/assets/main.css +1 -1
- package/dist/assets/radio-group.css +1 -1
- package/dist/badge-DscsRVHR.js +1825 -0
- package/dist/components/accordion/accordion.js +3 -3
- package/dist/components/accordion/index.js +1 -1
- package/dist/components/badge/badge.js +3 -3
- package/dist/components/badge/index.js +1 -1
- package/dist/components/box/box.js +8 -8
- package/dist/components/button/button.d.ts +2 -1
- package/dist/components/button/button.js +59 -60
- package/dist/components/card/card.js +3 -3
- package/dist/components/card/index.js +1 -1
- package/dist/components/flex/flex.js +1 -1
- package/dist/components/grid/grid.js +6 -6
- package/dist/components/heading/heading.d.ts +3 -2
- package/dist/components/heading/heading.js +20 -21
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.js +26 -25
- package/dist/components/modal/index.d.ts +2 -0
- package/dist/components/modal/index.js +4 -0
- package/dist/components/modal/modal.d.ts +76 -0
- package/dist/components/modal/modal.js +28 -0
- package/dist/components/navigation-menu/index.js +1 -1
- package/dist/components/navigation-menu/navigation-menu.d.ts +2 -0
- package/dist/components/navigation-menu/navigation-menu.js +8 -1032
- package/dist/components/notification/index.js +1 -1
- package/dist/components/notification/notification.d.ts +3 -3
- package/dist/components/notification/notification.js +4 -4
- package/dist/components/radio-group/index.js +1 -1
- package/dist/components/radio-group/radio-group.js +1 -1
- package/dist/components/text-field/text-field.js +15 -15
- package/dist/components/toggle/index.js +1 -1
- package/dist/components/toggle/toggle.d.ts +2 -2
- package/dist/components/toggle/toggle.js +3 -3
- package/dist/{index-DPFZO9xk.js → index-FPIZOCcD.js} +27 -28
- package/dist/main.js +41 -40
- package/dist/navigation-menu-DKuyW8zE.js +1036 -0
- package/dist/{radio-group-DN1IYZdr.js → radio-group-B--zT3OL.js} +8 -8
- package/dist/tokens/breakpoint/variables.json.d.ts +11 -0
- package/dist/utils/component-props-as.d.ts +5 -0
- package/dist/utils/component-props-as.js +1 -0
- package/dist/utils/layout/align.d.ts +46 -0
- package/dist/utils/layout/align.js +31 -0
- package/dist/utils/layout/flex.d.ts +281 -10
- package/dist/utils/layout/flex.js +44 -8
- package/dist/utils/layout/gap.d.ts +340 -0
- package/dist/utils/layout/gap.js +21 -0
- package/dist/utils/layout/grid.d.ts +313 -0
- package/dist/utils/layout/grid.js +116 -0
- package/dist/utils/layout/height.d.ts +118 -0
- package/dist/utils/layout/height.js +50 -0
- package/dist/utils/layout/index.d.ts +63 -111
- package/dist/utils/layout/index.js +62 -147
- package/dist/utils/layout/justify.d.ts +39 -0
- package/dist/utils/layout/justify.js +16 -0
- package/dist/utils/layout/margin.d.ts +443 -11
- package/dist/utils/layout/margin.js +1 -1
- package/dist/utils/layout/padding.d.ts +478 -0
- package/dist/utils/layout/padding.js +32 -0
- package/dist/utils/layout/util.d.ts +78 -4
- package/dist/utils/layout/util.js +30 -31
- package/dist/utils/layout/width.d.ts +43 -7
- package/dist/utils/layout/width.js +6 -2
- package/package.json +2 -1
- package/dist/badge-cOFoFJw0.js +0 -798
- package/dist/tokens/spacing/variables.json.d.ts +0 -34
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
"spacing": {
|
|
3
|
-
"0": "0rem",
|
|
4
|
-
"10": "0.0625rem",
|
|
5
|
-
"25": "0.125rem",
|
|
6
|
-
"50": "0.25rem",
|
|
7
|
-
"100": "0.5rem",
|
|
8
|
-
"150": "0.75rem",
|
|
9
|
-
"200": "1rem",
|
|
10
|
-
"250": "1.25rem",
|
|
11
|
-
"300": "1.5rem",
|
|
12
|
-
"400": "2rem",
|
|
13
|
-
"600": "3rem",
|
|
14
|
-
"800": "4rem",
|
|
15
|
-
"1000": "5rem",
|
|
16
|
-
"1200": "6rem",
|
|
17
|
-
"1600": "8rem",
|
|
18
|
-
"gutter": {
|
|
19
|
-
"sm": "1rem",
|
|
20
|
-
"md": "1.5rem",
|
|
21
|
-
"lg": "1.5rem",
|
|
22
|
-
"xl": "1.5rem"
|
|
23
|
-
},
|
|
24
|
-
"page-padding": {
|
|
25
|
-
"sm": "1rem",
|
|
26
|
-
"md": "1.5rem",
|
|
27
|
-
"lg": "3rem",
|
|
28
|
-
"xl": "3rem"
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
;
|
|
33
|
-
|
|
34
|
-
export default _default;
|