gov-ui-core 0.2.6-beta.1 → 0.2.6-beta.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/.stylelintrc.json +3 -0
- package/@types/styles.d.ts +10 -0
- package/build/20d0d451f31ed3b5c15f.woff +1 -0
- package/build/39285e8af490890e2df4.otf +0 -0
- package/build/3965b6176d1ce958b445.woff +1 -0
- package/build/508d69efb37042551458.woff +1 -0
- package/build/72ba455576ce8174ffa8.otf +0 -0
- package/build/a9ba4978d441af03cd27.woff +1 -0
- package/build/components/Badge/index.d.ts +8 -0
- package/build/components/Badge/styled.d.ts +1 -0
- package/build/components/Breadcrumb/index.d.ts +6 -0
- package/build/components/Breadcrumb/styled.d.ts +2 -0
- package/build/components/Button/SwitchButton.d.ts +6 -3
- package/build/components/Button/styled.d.ts +4 -1
- package/build/components/Card/index.d.ts +12 -0
- package/build/components/Chip/constants.d.ts +9 -0
- package/build/components/Chip/index.d.ts +12 -0
- package/build/components/Input/Checkbox.d.ts +4 -1
- package/build/components/Input/Input.d.ts +1 -0
- package/build/components/Input/Radio.d.ts +3 -1
- package/build/components/Input/Select.d.ts +1 -0
- package/build/components/Input/TextArea.d.ts +3 -0
- package/build/components/Input/styled.d.ts +8 -5
- package/build/components/Menu/index.d.ts +25 -0
- package/build/components/Sliders/index.d.ts +7 -0
- package/build/components/Sliders/styled.d.ts +4 -0
- package/build/components/Table/styled.d.ts +2 -1
- package/build/components/Tabs/TabContent.d.ts +8 -0
- package/build/components/Tabs/index.d.ts +19 -0
- package/build/components/Tabs/styled.d.ts +11 -0
- package/build/components/Tooltips/index.d.ts +13 -0
- package/build/e65c7edcd47e3e9f5c99.otf +0 -0
- package/build/f7a8dce8dfc249d7e12b.otf +0 -0
- package/build/index.d.ts +1 -1
- package/build/index.js +1 -1
- package/build/modules.d.ts +3 -3
- package/build/pages/BreadcrumbSample.d.ts +5 -0
- package/build/pages/CardSample.d.ts +5 -0
- package/build/pages/CheckboxSample.d.ts +6 -0
- package/build/pages/ChipSample.d.ts +6 -0
- package/build/pages/RadioSample.d.ts +6 -0
- package/build/pages/SlidersSample.d.ts +5 -0
- package/build/pages/TabsSample.d.ts +6 -0
- package/build/pages/TooltipsSample.d.ts +5 -0
- package/package.json +2 -2
- package/postcss.config.js +3 -1
- package/tailwind.config.js +5 -4
- package/build/1588accceb3200a24f55.svg +0 -1
- package/build/components/TailwindTest/index.d.ts +0 -6
- package/build/pages/CreateTable.d.ts +0 -20
package/.stylelintrc.json
CHANGED
package/@types/styles.d.ts
CHANGED
|
@@ -24,8 +24,10 @@ declare module 'styled-components' {
|
|
|
24
24
|
black20?: string;
|
|
25
25
|
black15?: string;
|
|
26
26
|
black10?: string;
|
|
27
|
+
black07?: string;
|
|
27
28
|
black05?: string;
|
|
28
29
|
black03?: string;
|
|
30
|
+
black02?: string;
|
|
29
31
|
white?: string;
|
|
30
32
|
white90?: string;
|
|
31
33
|
white80?: string;
|
|
@@ -57,6 +59,7 @@ declare module 'styled-components' {
|
|
|
57
59
|
colorPrimary30?: string;
|
|
58
60
|
colorPrimary20?: string;
|
|
59
61
|
colorPrimary10?: string;
|
|
62
|
+
colorPrimary05?: string;
|
|
60
63
|
colorPrimaryHover?: string;
|
|
61
64
|
colorPrimaryActive?: string;
|
|
62
65
|
colorEtcLine?: string;
|
|
@@ -81,5 +84,12 @@ declare module 'styled-components' {
|
|
|
81
84
|
colorChart08?: string;
|
|
82
85
|
colorChart09?: string;
|
|
83
86
|
colorChart10?: string;
|
|
87
|
+
|
|
88
|
+
// box shadow
|
|
89
|
+
elevationLight01?: string;
|
|
90
|
+
elevationLight02?: string;
|
|
91
|
+
elevationLight03?: string;
|
|
92
|
+
elevationLight04?: string;
|
|
93
|
+
elevationLight05?: string;
|
|
84
94
|
}
|
|
85
95
|
}
|