spoko-design-system 1.18.1 → 1.20.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.
- package/.claude/settings.json +48 -48
- package/.github/dependabot.yml +11 -11
- package/.github/todo.yml +3 -3
- package/.github/workflows/claude.yml +37 -37
- package/.github/workflows/code-quality.yml +72 -72
- package/.github/workflows/deploy.yml +43 -43
- package/.husky/README.md +41 -41
- package/.husky/commit-msg +1 -1
- package/.husky/pre-commit +40 -40
- package/.prettierignore +14 -14
- package/.prettierrc +30 -30
- package/.stackblitzrc +5 -5
- package/.vscode/extensions.json +4 -4
- package/.vscode/launch.json +11 -11
- package/.vscode/settings.json +21 -21
- package/CHANGELOG.md +462 -450
- package/CLAUDE.md +268 -268
- package/LICENSE +21 -21
- package/README.md +303 -132
- package/TOOLTIPS.md +236 -236
- package/astro.config.mjs +84 -84
- package/commitlint.config.js +3 -3
- package/dev-dist/sw.js +91 -91
- package/dev-dist/workbox-c676b6d3.js +3391 -3391
- package/eslint.config.js +70 -70
- package/icon.config.ts +348 -348
- package/index.ts +78 -78
- package/package.json +160 -160
- package/public/arrow-bottom.svg +7 -7
- package/public/fonts/lg.svg +53 -53
- package/public/fonts/vwhead-bold-demo.html +549 -549
- package/public/fonts/vwhead-regular-demo.html +549 -549
- package/public/fonts/vwtext-bold-demo.html +549 -549
- package/public/fonts/vwtext-regular-demo.html +549 -549
- package/public/github.svg +3 -3
- package/public/grid_dot.svg +4 -4
- package/public/linkedin.svg +44 -44
- package/public/make-scrollable-code-focusable.js +3 -3
- package/public/pagefind.yml +3 -3
- package/public/polo.blue.svg +29 -29
- package/public/spoko.space.svg +71 -71
- package/public/twitter.svg +46 -46
- package/renovate.json +6 -6
- package/sandbox.config.json +11 -11
- package/sonar-project.properties +26 -26
- package/src/components/Category/CategoryDetails.astro +46 -18
- package/src/components/Jumbotron/variants/Hero.astro +9 -1
- package/src/components/Jumbotron/variants/PostSplit.astro +8 -0
- package/src/pages/components/badges.mdx +57 -57
- package/src/pages/components/breadcrumbs.mdx +139 -139
- package/src/pages/components/buttons.mdx +359 -359
- package/src/pages/components/card.mdx +294 -294
- package/src/pages/components/carousel.mdx +62 -62
- package/src/pages/components/copyright.mdx +42 -42
- package/src/pages/components/details-list.mdx +207 -207
- package/src/pages/components/features-list.mdx +37 -37
- package/src/pages/components/flags.mdx +49 -49
- package/src/pages/components/fuck-russia.mdx +39 -39
- package/src/pages/components/hand-drive.mdx +78 -78
- package/src/pages/components/headline.mdx +337 -337
- package/src/pages/components/image.mdx +513 -513
- package/src/pages/components/input.mdx +367 -367
- package/src/pages/components/jumbotron.mdx +530 -530
- package/src/pages/components/modal.mdx +212 -212
- package/src/pages/components/post-header.mdx +64 -64
- package/src/pages/components/pr-code.mdx +213 -213
- package/src/pages/components/product-engine.mdx +418 -418
- package/src/pages/components/product-number.mdx +58 -58
- package/src/pages/components/product-tile.mdx +51 -51
- package/src/pages/components/quote.mdx +33 -33
- package/src/pages/components/slimbanner.mdx +260 -260
- package/src/pages/components/table.mdx +108 -108
- package/src/pages/core/colors.mdx +21 -21
- package/src/pages/core/grid.mdx +193 -193
- package/src/pages/core/introduction.mdx +77 -77
- package/src/pages/core/tooltips.mdx +491 -491
- package/src/pages/patterns/introduction.mdx +60 -60
- package/src/styles/_variables.scss +70 -70
- package/tailwind.config.cjs +8 -8
- package/tsconfig.json +28 -28
- package/uno-config/index.ts +269 -269
- package/uno-config/theme/breakpoints.ts +9 -9
- package/uno-config/theme/colors.ts +65 -65
- package/uno-config/theme/dimensions.ts +17 -17
- package/uno-config/theme/effects.ts +14 -14
- package/uno-config/theme/grid.ts +10 -10
- package/uno-config/theme/index.ts +26 -26
- package/uno-config/theme/shortcuts/buttons.ts +53 -53
- package/uno-config/theme/shortcuts/components.ts +124 -124
- package/uno-config/theme/shortcuts/index.ts +20 -20
- package/uno-config/theme/shortcuts/jumbotron.ts +71 -71
- package/uno-config/theme/shortcuts/layout.ts +75 -75
- package/uno-config/theme/typography.ts +29 -29
- package/uno.config.ts +2 -2
package/index.ts
CHANGED
|
@@ -1,78 +1,78 @@
|
|
|
1
|
-
// Do not write code directly here, instead use the `src` folder!
|
|
2
|
-
// Then, use this file to export everything you want your user to access.
|
|
3
|
-
|
|
4
|
-
// src/index.ts
|
|
5
|
-
|
|
6
|
-
// Vue Components
|
|
7
|
-
export { default as FuckRussia } from './src/components/FuckRussia.vue';
|
|
8
|
-
export { default as FlagPL } from './src/components/flags/FlagPL.vue';
|
|
9
|
-
export { default as Badges } from './src/components/Badges.vue';
|
|
10
|
-
export { default as SlimBanner } from './src/components/SlimBanner.vue';
|
|
11
|
-
|
|
12
|
-
export { default as Jumbotron } from './src/components/Jumbotron.astro';
|
|
13
|
-
export { default as Button } from './src/components/Button.vue';
|
|
14
|
-
export { default as Breadcrumbs } from './src/components/Breadcrumbs.vue';
|
|
15
|
-
export { default as ProductDetailsList } from './src/components/ProductDetailsList.vue';
|
|
16
|
-
export { default as FeaturesList } from './src/components/FeaturesList.vue';
|
|
17
|
-
export { default as ProductCodes } from './src/components/ProductCodes.vue';
|
|
18
|
-
export { default as Headline } from './src/components/Headline.vue';
|
|
19
|
-
export { default as Quote } from './src/components/Quote.vue';
|
|
20
|
-
|
|
21
|
-
export { default as ProductEngineType } from './src/components/Product/ProductEngineType.vue';
|
|
22
|
-
// ProductEngine and ProductEngines are now Astro components (see Astro Components section below)
|
|
23
|
-
export { default as ProductButton } from './src/components/Product/ProductButton.vue';
|
|
24
|
-
export { default as ProductColors } from './src/components/Product/ProductColors.vue';
|
|
25
|
-
export { default as ProductDetailName } from './src/components/Product/ProductDetailName.vue';
|
|
26
|
-
// export { default as ProductDetails } from './src/components/Product/ProductDetails.vue';
|
|
27
|
-
export { default as ProductDoc } from './src/components/Product/ProductDoc.vue';
|
|
28
|
-
export { default as ProductModel } from './src/components/Product/ProductModel.vue';
|
|
29
|
-
export { default as ProductModels } from './src/components/Product/ProductModels.vue';
|
|
30
|
-
export { default as ProductName } from './src/components/Product/ProductName.vue';
|
|
31
|
-
export { default as ProductPositions } from './src/components/Product/ProductPositions.vue';
|
|
32
|
-
export { default as ProductNumber } from './src/components/Product/ProductNumber.astro';
|
|
33
|
-
export { default as ProductLink } from './src/components/Product/ProductLink.vue';
|
|
34
|
-
// export { default as ProductCarousel } from './src/components/Product/ProductCarousel.astro';
|
|
35
|
-
export { default as LanguageSuggestion } from './src/components/LanguageSuggestion.astro';
|
|
36
|
-
export { default as Input } from './src/components/Input.vue';
|
|
37
|
-
|
|
38
|
-
export { default as PostCategories } from './src/components/Post/PostCategories.vue';
|
|
39
|
-
export { default as CategorySidebarToggler } from './src/components/Category/CategorySidebarToggler.vue';
|
|
40
|
-
export { default as SubCategoryLink } from './src/components/Category/SubCategoryLink.vue';
|
|
41
|
-
export { default as CategoryLink } from './src/components/Category/CategoryLink.vue';
|
|
42
|
-
|
|
43
|
-
// Astro Components
|
|
44
|
-
export { default as Copyright } from './src/components/Copyright.astro';
|
|
45
|
-
export { default as HandDrive } from './src/components/HandDrive.astro';
|
|
46
|
-
export { default as Faq } from './src/components/Faq.astro';
|
|
47
|
-
export { default as FaqItem } from './src/components/FaqItem.astro';
|
|
48
|
-
export { default as ButtonCopy } from './src/components/ButtonCopy.astro';
|
|
49
|
-
export { default as CallToAction } from './src/components/layout/CallToAction.astro';
|
|
50
|
-
|
|
51
|
-
export { default as ProductImage } from './src/components/Product/ProductImage.astro';
|
|
52
|
-
export { default as ProductEngine } from './src/components/Product/ProductEngine.astro';
|
|
53
|
-
export { default as ProductEngines } from './src/components/Product/ProductEngines.astro';
|
|
54
|
-
|
|
55
|
-
export { default as CategoryDetails } from './src/components/Category/CategoryDetails.astro';
|
|
56
|
-
export { default as CategoryTile } from './src/components/Category/CategoryTile.astro';
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
// Utils: Product
|
|
60
|
-
export { default as getPriceFormatted } from './src/utils/product/getPriceFormatted';
|
|
61
|
-
export { default as getProductChecklist } from './src/utils/product/getProductChecklist';
|
|
62
|
-
export { getEngineTooltipContent } from './src/utils/product/getEngineTooltipContent';
|
|
63
|
-
export type { Engine, EngineTranslations } from './src/utils/product/getEngineTooltipContent';
|
|
64
|
-
|
|
65
|
-
// Utils: SEO
|
|
66
|
-
export { default as getShorterDescription } from './src/utils/seo/getShorterDescription';
|
|
67
|
-
|
|
68
|
-
// Utils: Text
|
|
69
|
-
|
|
70
|
-
export { text2paragraphs, countWords, firstSentence, removeSemicolon } from './src/utils/text';
|
|
71
|
-
export { default as formatDate } from './src/utils/text/formatDate';
|
|
72
|
-
export { default as formatLocaleNumber } from './src/utils/text/formatLocaleNumber';
|
|
73
|
-
export { default as formatPad } from './src/utils/text/formatPad';
|
|
74
|
-
export { default as getNumberFormatted } from './src/utils/text/getNumberFormatted';
|
|
75
|
-
export { default as getTranslatedLink } from './src/utils/text/getTranslatedLink';
|
|
76
|
-
|
|
77
|
-
// Scripts
|
|
78
|
-
export { initTooltips } from './src/scripts/tooltips';
|
|
1
|
+
// Do not write code directly here, instead use the `src` folder!
|
|
2
|
+
// Then, use this file to export everything you want your user to access.
|
|
3
|
+
|
|
4
|
+
// src/index.ts
|
|
5
|
+
|
|
6
|
+
// Vue Components
|
|
7
|
+
export { default as FuckRussia } from './src/components/FuckRussia.vue';
|
|
8
|
+
export { default as FlagPL } from './src/components/flags/FlagPL.vue';
|
|
9
|
+
export { default as Badges } from './src/components/Badges.vue';
|
|
10
|
+
export { default as SlimBanner } from './src/components/SlimBanner.vue';
|
|
11
|
+
|
|
12
|
+
export { default as Jumbotron } from './src/components/Jumbotron.astro';
|
|
13
|
+
export { default as Button } from './src/components/Button.vue';
|
|
14
|
+
export { default as Breadcrumbs } from './src/components/Breadcrumbs.vue';
|
|
15
|
+
export { default as ProductDetailsList } from './src/components/ProductDetailsList.vue';
|
|
16
|
+
export { default as FeaturesList } from './src/components/FeaturesList.vue';
|
|
17
|
+
export { default as ProductCodes } from './src/components/ProductCodes.vue';
|
|
18
|
+
export { default as Headline } from './src/components/Headline.vue';
|
|
19
|
+
export { default as Quote } from './src/components/Quote.vue';
|
|
20
|
+
|
|
21
|
+
export { default as ProductEngineType } from './src/components/Product/ProductEngineType.vue';
|
|
22
|
+
// ProductEngine and ProductEngines are now Astro components (see Astro Components section below)
|
|
23
|
+
export { default as ProductButton } from './src/components/Product/ProductButton.vue';
|
|
24
|
+
export { default as ProductColors } from './src/components/Product/ProductColors.vue';
|
|
25
|
+
export { default as ProductDetailName } from './src/components/Product/ProductDetailName.vue';
|
|
26
|
+
// export { default as ProductDetails } from './src/components/Product/ProductDetails.vue';
|
|
27
|
+
export { default as ProductDoc } from './src/components/Product/ProductDoc.vue';
|
|
28
|
+
export { default as ProductModel } from './src/components/Product/ProductModel.vue';
|
|
29
|
+
export { default as ProductModels } from './src/components/Product/ProductModels.vue';
|
|
30
|
+
export { default as ProductName } from './src/components/Product/ProductName.vue';
|
|
31
|
+
export { default as ProductPositions } from './src/components/Product/ProductPositions.vue';
|
|
32
|
+
export { default as ProductNumber } from './src/components/Product/ProductNumber.astro';
|
|
33
|
+
export { default as ProductLink } from './src/components/Product/ProductLink.vue';
|
|
34
|
+
// export { default as ProductCarousel } from './src/components/Product/ProductCarousel.astro';
|
|
35
|
+
export { default as LanguageSuggestion } from './src/components/LanguageSuggestion.astro';
|
|
36
|
+
export { default as Input } from './src/components/Input.vue';
|
|
37
|
+
|
|
38
|
+
export { default as PostCategories } from './src/components/Post/PostCategories.vue';
|
|
39
|
+
export { default as CategorySidebarToggler } from './src/components/Category/CategorySidebarToggler.vue';
|
|
40
|
+
export { default as SubCategoryLink } from './src/components/Category/SubCategoryLink.vue';
|
|
41
|
+
export { default as CategoryLink } from './src/components/Category/CategoryLink.vue';
|
|
42
|
+
|
|
43
|
+
// Astro Components
|
|
44
|
+
export { default as Copyright } from './src/components/Copyright.astro';
|
|
45
|
+
export { default as HandDrive } from './src/components/HandDrive.astro';
|
|
46
|
+
export { default as Faq } from './src/components/Faq.astro';
|
|
47
|
+
export { default as FaqItem } from './src/components/FaqItem.astro';
|
|
48
|
+
export { default as ButtonCopy } from './src/components/ButtonCopy.astro';
|
|
49
|
+
export { default as CallToAction } from './src/components/layout/CallToAction.astro';
|
|
50
|
+
|
|
51
|
+
export { default as ProductImage } from './src/components/Product/ProductImage.astro';
|
|
52
|
+
export { default as ProductEngine } from './src/components/Product/ProductEngine.astro';
|
|
53
|
+
export { default as ProductEngines } from './src/components/Product/ProductEngines.astro';
|
|
54
|
+
|
|
55
|
+
export { default as CategoryDetails } from './src/components/Category/CategoryDetails.astro';
|
|
56
|
+
export { default as CategoryTile } from './src/components/Category/CategoryTile.astro';
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
// Utils: Product
|
|
60
|
+
export { default as getPriceFormatted } from './src/utils/product/getPriceFormatted';
|
|
61
|
+
export { default as getProductChecklist } from './src/utils/product/getProductChecklist';
|
|
62
|
+
export { getEngineTooltipContent } from './src/utils/product/getEngineTooltipContent';
|
|
63
|
+
export type { Engine, EngineTranslations } from './src/utils/product/getEngineTooltipContent';
|
|
64
|
+
|
|
65
|
+
// Utils: SEO
|
|
66
|
+
export { default as getShorterDescription } from './src/utils/seo/getShorterDescription';
|
|
67
|
+
|
|
68
|
+
// Utils: Text
|
|
69
|
+
|
|
70
|
+
export { text2paragraphs, countWords, firstSentence, removeSemicolon } from './src/utils/text';
|
|
71
|
+
export { default as formatDate } from './src/utils/text/formatDate';
|
|
72
|
+
export { default as formatLocaleNumber } from './src/utils/text/formatLocaleNumber';
|
|
73
|
+
export { default as formatPad } from './src/utils/text/formatPad';
|
|
74
|
+
export { default as getNumberFormatted } from './src/utils/text/getNumberFormatted';
|
|
75
|
+
export { default as getTranslatedLink } from './src/utils/text/getTranslatedLink';
|
|
76
|
+
|
|
77
|
+
// Scripts
|
|
78
|
+
export { initTooltips } from './src/scripts/tooltips';
|
package/package.json
CHANGED
|
@@ -1,160 +1,160 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "spoko-design-system",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"type": "module",
|
|
5
|
-
"private": false,
|
|
6
|
-
"main": "./index.ts",
|
|
7
|
-
"module": "./index.ts",
|
|
8
|
-
"types": "./index.ts",
|
|
9
|
-
"exports": {
|
|
10
|
-
".": {
|
|
11
|
-
"import": "./index.ts",
|
|
12
|
-
"require": "./index.ts"
|
|
13
|
-
},
|
|
14
|
-
"./styles/*": "./src/styles/*",
|
|
15
|
-
"./scripts/*": "./src/scripts/*",
|
|
16
|
-
"./icons": "./icon.config.ts",
|
|
17
|
-
"./icon-collections": "./icon.collections.ts",
|
|
18
|
-
"./uno-config": "./uno-config/index.ts"
|
|
19
|
-
},
|
|
20
|
-
"scripts": {
|
|
21
|
-
"dev": "astro dev",
|
|
22
|
-
"start": "astro dev",
|
|
23
|
-
"build": "astro build",
|
|
24
|
-
"preview": "astro preview",
|
|
25
|
-
"semantic-release": "semantic-release",
|
|
26
|
-
"prepublishOnly": "pnpm run build",
|
|
27
|
-
"format": "prettier --write \"src/**/*.{js,ts,jsx,tsx,vue,astro,json,css,md}\"",
|
|
28
|
-
"format:check": "prettier --check \"src/**/*.{js,ts,jsx,tsx,vue,astro,json,css,md}\"",
|
|
29
|
-
"lint": "eslint \"src/**/*.{js,ts,jsx,tsx,vue,astro}\"",
|
|
30
|
-
"lint:fix": "eslint \"src/**/*.{js,ts,jsx,tsx,vue,astro}\" --fix",
|
|
31
|
-
"check": "astro check",
|
|
32
|
-
"prepare": "husky"
|
|
33
|
-
},
|
|
34
|
-
"repository": {
|
|
35
|
-
"type": "git",
|
|
36
|
-
"url": "https://github.com/polo-blue/sds"
|
|
37
|
-
},
|
|
38
|
-
"author": {
|
|
39
|
-
"name": "spokospace",
|
|
40
|
-
"email": "szymon@spoko.space",
|
|
41
|
-
"url": "https://spoko.space"
|
|
42
|
-
},
|
|
43
|
-
"homepage": "https://sds.spoko.space/",
|
|
44
|
-
"license": "MIT",
|
|
45
|
-
"publishConfig": {
|
|
46
|
-
"access": "public",
|
|
47
|
-
"registry": "https://registry.npmjs.org/"
|
|
48
|
-
},
|
|
49
|
-
"keywords": [
|
|
50
|
-
"astro-starter",
|
|
51
|
-
"seo",
|
|
52
|
-
"astro",
|
|
53
|
-
"sds design system",
|
|
54
|
-
"spoko design system"
|
|
55
|
-
],
|
|
56
|
-
"dependencies": {
|
|
57
|
-
"@algolia/client-search": "^5.
|
|
58
|
-
"@astrojs/mdx": "^4.3.
|
|
59
|
-
"@astrojs/node": "^9.5.1",
|
|
60
|
-
"@astrojs/sitemap": "^3.6.0",
|
|
61
|
-
"@astrojs/ts-plugin": "^1.10.
|
|
62
|
-
"@astrojs/vue": "^5.1.3",
|
|
63
|
-
"@docsearch/css": "^4.3.2",
|
|
64
|
-
"@floating-ui/vue": "^1.1.9",
|
|
65
|
-
"@iconify-json/ant-design": "^1.2.5",
|
|
66
|
-
"@iconify-json/bi": "^1.2.
|
|
67
|
-
"@iconify-json/bx": "^1.2.2",
|
|
68
|
-
"@iconify-json/carbon": "^1.2.
|
|
69
|
-
"@iconify-json/circle-flags": "^1.2.10",
|
|
70
|
-
"@iconify-json/ei": "^1.2.2",
|
|
71
|
-
"@iconify-json/el": "^1.2.2",
|
|
72
|
-
"@iconify-json/eos-icons": "^1.2.4",
|
|
73
|
-
"@iconify-json/et": "^1.2.1",
|
|
74
|
-
"@iconify-json/flowbite": "^1.2.7",
|
|
75
|
-
"@iconify-json/fluent": "^1.2.
|
|
76
|
-
"@iconify-json/fluent-emoji": "1.2.7",
|
|
77
|
-
"@iconify-json/ic": "^1.2.4",
|
|
78
|
-
"@iconify-json/icon-park-outline": "^1.2.4",
|
|
79
|
-
"@iconify-json/la": "^1.2.1",
|
|
80
|
-
"@iconify-json/lucide": "^1.2.
|
|
81
|
-
"@iconify-json/material-symbols-light": "^1.2.
|
|
82
|
-
"@iconify-json/mdi": "^1.2.3",
|
|
83
|
-
"@iconify-json/noto-v1": "^1.2.5",
|
|
84
|
-
"@iconify-json/octicon": "^1.2.19",
|
|
85
|
-
"@iconify-json/ph": "^1.2.2",
|
|
86
|
-
"@iconify-json/simple-icons": "^1.2.
|
|
87
|
-
"@iconify-json/streamline": "^1.2.5",
|
|
88
|
-
"@iconify-json/streamline-emojis": "^1.2.4",
|
|
89
|
-
"@iconify-json/streamline-freehand-color": "^1.2.2",
|
|
90
|
-
"@iconify-json/system-uicons": "^1.2.4",
|
|
91
|
-
"@iconify-json/uil": "^1.2.3",
|
|
92
|
-
"@iconify-json/vscode-icons": "^1.2.
|
|
93
|
-
"@iconify/json": "^2.2.
|
|
94
|
-
"@iconify/vue": "^5.0.0",
|
|
95
|
-
"@playform/compress": "^0.2.0",
|
|
96
|
-
"@playform/inline": "^0.1.2",
|
|
97
|
-
"@unocss/astro": "66.5.
|
|
98
|
-
"@unocss/preset-attributify": "66.5.
|
|
99
|
-
"@unocss/preset-typography": "66.5.
|
|
100
|
-
"@unocss/preset-uno": "66.5.
|
|
101
|
-
"@unocss/preset-web-fonts": "66.5.
|
|
102
|
-
"@unocss/preset-wind": "66.5.
|
|
103
|
-
"@unocss/reset": "66.5.
|
|
104
|
-
"@vite-pwa/astro": "^1.
|
|
105
|
-
"@vueuse/core": "^14.
|
|
106
|
-
"astro-icon": "^1.1.5",
|
|
107
|
-
"astro-meta-tags": "^0.4.0",
|
|
108
|
-
"astro-navbar": "^2.4.0",
|
|
109
|
-
"astro-pagefind": "^1.8.5",
|
|
110
|
-
"astro-remote": "^0.3.4",
|
|
111
|
-
"dotenv": "^17.2.3",
|
|
112
|
-
"swiper": "^12.0.3",
|
|
113
|
-
"tippy.js": "^6.3.7",
|
|
114
|
-
"unocss": "66.5.
|
|
115
|
-
"vite-plugin-pwa": "^1.
|
|
116
|
-
"vue": "^3.5.
|
|
117
|
-
},
|
|
118
|
-
"devDependencies": {
|
|
119
|
-
"@commitlint/cli": "^20.
|
|
120
|
-
"@commitlint/config-conventional": "^20.
|
|
121
|
-
"@semantic-release/changelog": "^6.0.3",
|
|
122
|
-
"@semantic-release/git": "^10.0.1",
|
|
123
|
-
"@types/gtag.js": "^0.0.20",
|
|
124
|
-
"@types/node": "^
|
|
125
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
126
|
-
"@typescript-eslint/parser": "^8.
|
|
127
|
-
"@unocss/transformer-variant-group": "66.5.
|
|
128
|
-
"@vitejs/plugin-vue": "^6.0.
|
|
129
|
-
"@vue/compiler-sfc": "^3.5.
|
|
130
|
-
"@vue/eslint-config-typescript": "^14.6.0",
|
|
131
|
-
"astro": "^5.
|
|
132
|
-
"conventional-changelog-conventionalcommits": "^9.1.0",
|
|
133
|
-
"eslint": "^9.39.
|
|
134
|
-
"eslint-plugin-astro": "^1.5.0",
|
|
135
|
-
"eslint-plugin-vue": "^10.
|
|
136
|
-
"husky": "^9.1.7",
|
|
137
|
-
"prettier": "^3.
|
|
138
|
-
"prettier-plugin-astro": "^0.14.1",
|
|
139
|
-
"semantic-release": "^25.0.2",
|
|
140
|
-
"unocss": "^0.65.0",
|
|
141
|
-
"vite": "^7.2.
|
|
142
|
-
},
|
|
143
|
-
"packageManager": "pnpm@10.17.1",
|
|
144
|
-
"pnpm": {
|
|
145
|
-
"default": "9.15.3",
|
|
146
|
-
"overrides": {
|
|
147
|
-
"file-type@>=17.0.0 <17.1.3": ">=17.1.3",
|
|
148
|
-
"sharp@<0.30.5": ">=0.30.5"
|
|
149
|
-
},
|
|
150
|
-
"ignoredBuiltDependencies": [
|
|
151
|
-
"esbuild",
|
|
152
|
-
"sharp",
|
|
153
|
-
"vue-demi"
|
|
154
|
-
]
|
|
155
|
-
},
|
|
156
|
-
"engines": {
|
|
157
|
-
"node": ">=22.17.0",
|
|
158
|
-
"pnpm": ">=10.16.1"
|
|
159
|
-
}
|
|
160
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "spoko-design-system",
|
|
3
|
+
"version": "1.20.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"private": false,
|
|
6
|
+
"main": "./index.ts",
|
|
7
|
+
"module": "./index.ts",
|
|
8
|
+
"types": "./index.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": "./index.ts",
|
|
12
|
+
"require": "./index.ts"
|
|
13
|
+
},
|
|
14
|
+
"./styles/*": "./src/styles/*",
|
|
15
|
+
"./scripts/*": "./src/scripts/*",
|
|
16
|
+
"./icons": "./icon.config.ts",
|
|
17
|
+
"./icon-collections": "./icon.collections.ts",
|
|
18
|
+
"./uno-config": "./uno-config/index.ts"
|
|
19
|
+
},
|
|
20
|
+
"scripts": {
|
|
21
|
+
"dev": "astro dev",
|
|
22
|
+
"start": "astro dev",
|
|
23
|
+
"build": "astro build",
|
|
24
|
+
"preview": "astro preview",
|
|
25
|
+
"semantic-release": "semantic-release",
|
|
26
|
+
"prepublishOnly": "pnpm run build",
|
|
27
|
+
"format": "prettier --write \"src/**/*.{js,ts,jsx,tsx,vue,astro,json,css,md}\"",
|
|
28
|
+
"format:check": "prettier --check \"src/**/*.{js,ts,jsx,tsx,vue,astro,json,css,md}\"",
|
|
29
|
+
"lint": "eslint \"src/**/*.{js,ts,jsx,tsx,vue,astro}\"",
|
|
30
|
+
"lint:fix": "eslint \"src/**/*.{js,ts,jsx,tsx,vue,astro}\" --fix",
|
|
31
|
+
"check": "astro check",
|
|
32
|
+
"prepare": "husky"
|
|
33
|
+
},
|
|
34
|
+
"repository": {
|
|
35
|
+
"type": "git",
|
|
36
|
+
"url": "https://github.com/polo-blue/sds"
|
|
37
|
+
},
|
|
38
|
+
"author": {
|
|
39
|
+
"name": "spokospace",
|
|
40
|
+
"email": "szymon@spoko.space",
|
|
41
|
+
"url": "https://spoko.space"
|
|
42
|
+
},
|
|
43
|
+
"homepage": "https://sds.spoko.space/",
|
|
44
|
+
"license": "MIT",
|
|
45
|
+
"publishConfig": {
|
|
46
|
+
"access": "public",
|
|
47
|
+
"registry": "https://registry.npmjs.org/"
|
|
48
|
+
},
|
|
49
|
+
"keywords": [
|
|
50
|
+
"astro-starter",
|
|
51
|
+
"seo",
|
|
52
|
+
"astro",
|
|
53
|
+
"sds design system",
|
|
54
|
+
"spoko design system"
|
|
55
|
+
],
|
|
56
|
+
"dependencies": {
|
|
57
|
+
"@algolia/client-search": "^5.46.0",
|
|
58
|
+
"@astrojs/mdx": "^4.3.13",
|
|
59
|
+
"@astrojs/node": "^9.5.1",
|
|
60
|
+
"@astrojs/sitemap": "^3.6.0",
|
|
61
|
+
"@astrojs/ts-plugin": "^1.10.6",
|
|
62
|
+
"@astrojs/vue": "^5.1.3",
|
|
63
|
+
"@docsearch/css": "^4.3.2",
|
|
64
|
+
"@floating-ui/vue": "^1.1.9",
|
|
65
|
+
"@iconify-json/ant-design": "^1.2.5",
|
|
66
|
+
"@iconify-json/bi": "^1.2.7",
|
|
67
|
+
"@iconify-json/bx": "^1.2.2",
|
|
68
|
+
"@iconify-json/carbon": "^1.2.15",
|
|
69
|
+
"@iconify-json/circle-flags": "^1.2.10",
|
|
70
|
+
"@iconify-json/ei": "^1.2.2",
|
|
71
|
+
"@iconify-json/el": "^1.2.2",
|
|
72
|
+
"@iconify-json/eos-icons": "^1.2.4",
|
|
73
|
+
"@iconify-json/et": "^1.2.1",
|
|
74
|
+
"@iconify-json/flowbite": "^1.2.7",
|
|
75
|
+
"@iconify-json/fluent": "^1.2.36",
|
|
76
|
+
"@iconify-json/fluent-emoji": "1.2.7",
|
|
77
|
+
"@iconify-json/ic": "^1.2.4",
|
|
78
|
+
"@iconify-json/icon-park-outline": "^1.2.4",
|
|
79
|
+
"@iconify-json/la": "^1.2.1",
|
|
80
|
+
"@iconify-json/lucide": "^1.2.81",
|
|
81
|
+
"@iconify-json/material-symbols-light": "^1.2.50",
|
|
82
|
+
"@iconify-json/mdi": "^1.2.3",
|
|
83
|
+
"@iconify-json/noto-v1": "^1.2.5",
|
|
84
|
+
"@iconify-json/octicon": "^1.2.19",
|
|
85
|
+
"@iconify-json/ph": "^1.2.2",
|
|
86
|
+
"@iconify-json/simple-icons": "^1.2.63",
|
|
87
|
+
"@iconify-json/streamline": "^1.2.5",
|
|
88
|
+
"@iconify-json/streamline-emojis": "^1.2.4",
|
|
89
|
+
"@iconify-json/streamline-freehand-color": "^1.2.2",
|
|
90
|
+
"@iconify-json/system-uicons": "^1.2.4",
|
|
91
|
+
"@iconify-json/uil": "^1.2.3",
|
|
92
|
+
"@iconify-json/vscode-icons": "^1.2.37",
|
|
93
|
+
"@iconify/json": "^2.2.418",
|
|
94
|
+
"@iconify/vue": "^5.0.0",
|
|
95
|
+
"@playform/compress": "^0.2.0",
|
|
96
|
+
"@playform/inline": "^0.1.2",
|
|
97
|
+
"@unocss/astro": "66.5.10",
|
|
98
|
+
"@unocss/preset-attributify": "66.5.10",
|
|
99
|
+
"@unocss/preset-typography": "66.5.10",
|
|
100
|
+
"@unocss/preset-uno": "66.5.10",
|
|
101
|
+
"@unocss/preset-web-fonts": "66.5.10",
|
|
102
|
+
"@unocss/preset-wind": "66.5.10",
|
|
103
|
+
"@unocss/reset": "66.5.10",
|
|
104
|
+
"@vite-pwa/astro": "^1.2.0",
|
|
105
|
+
"@vueuse/core": "^14.1.0",
|
|
106
|
+
"astro-icon": "^1.1.5",
|
|
107
|
+
"astro-meta-tags": "^0.4.0",
|
|
108
|
+
"astro-navbar": "^2.4.0",
|
|
109
|
+
"astro-pagefind": "^1.8.5",
|
|
110
|
+
"astro-remote": "^0.3.4",
|
|
111
|
+
"dotenv": "^17.2.3",
|
|
112
|
+
"swiper": "^12.0.3",
|
|
113
|
+
"tippy.js": "^6.3.7",
|
|
114
|
+
"unocss": "66.5.10",
|
|
115
|
+
"vite-plugin-pwa": "^1.2.0",
|
|
116
|
+
"vue": "^3.5.25"
|
|
117
|
+
},
|
|
118
|
+
"devDependencies": {
|
|
119
|
+
"@commitlint/cli": "^20.2.0",
|
|
120
|
+
"@commitlint/config-conventional": "^20.2.0",
|
|
121
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
122
|
+
"@semantic-release/git": "^10.0.1",
|
|
123
|
+
"@types/gtag.js": "^0.0.20",
|
|
124
|
+
"@types/node": "^25.0.2",
|
|
125
|
+
"@typescript-eslint/eslint-plugin": "^8.49.0",
|
|
126
|
+
"@typescript-eslint/parser": "^8.49.0",
|
|
127
|
+
"@unocss/transformer-variant-group": "66.5.10",
|
|
128
|
+
"@vitejs/plugin-vue": "^6.0.3",
|
|
129
|
+
"@vue/compiler-sfc": "^3.5.25",
|
|
130
|
+
"@vue/eslint-config-typescript": "^14.6.0",
|
|
131
|
+
"astro": "^5.16.5",
|
|
132
|
+
"conventional-changelog-conventionalcommits": "^9.1.0",
|
|
133
|
+
"eslint": "^9.39.2",
|
|
134
|
+
"eslint-plugin-astro": "^1.5.0",
|
|
135
|
+
"eslint-plugin-vue": "^10.6.2",
|
|
136
|
+
"husky": "^9.1.7",
|
|
137
|
+
"prettier": "^3.7.4",
|
|
138
|
+
"prettier-plugin-astro": "^0.14.1",
|
|
139
|
+
"semantic-release": "^25.0.2",
|
|
140
|
+
"unocss": "^0.65.0",
|
|
141
|
+
"vite": "^7.2.7"
|
|
142
|
+
},
|
|
143
|
+
"packageManager": "pnpm@10.17.1",
|
|
144
|
+
"pnpm": {
|
|
145
|
+
"default": "9.15.3",
|
|
146
|
+
"overrides": {
|
|
147
|
+
"file-type@>=17.0.0 <17.1.3": ">=17.1.3",
|
|
148
|
+
"sharp@<0.30.5": ">=0.30.5"
|
|
149
|
+
},
|
|
150
|
+
"ignoredBuiltDependencies": [
|
|
151
|
+
"esbuild",
|
|
152
|
+
"sharp",
|
|
153
|
+
"vue-demi"
|
|
154
|
+
]
|
|
155
|
+
},
|
|
156
|
+
"engines": {
|
|
157
|
+
"node": ">=22.17.0",
|
|
158
|
+
"pnpm": ">=10.16.1"
|
|
159
|
+
}
|
|
160
|
+
}
|
package/public/arrow-bottom.svg
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
3
|
-
<svg width="100%" height="100%" viewBox="0 0 18 10" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
|
|
4
|
-
<g transform="matrix(-0.0247114,-3.02628e-18,2.90782e-18,-0.0237442,23.7506,13.5573)">
|
|
5
|
-
<path d="M254.6,477.479C259.711,473.272 561.717,170.223 561.717,170.223C561.717,170.223 576.205,153.951 597.839,153.983C621.181,154.019 636.425,170.096 636.425,170.096C636.425,170.096 939.167,475.94 940.854,477.463C967.2,501.255 956.012,536.939 942.827,551.356C928.606,566.906 896.33,575.498 868.319,549.101C865.351,546.304 604.846,285.516 604.846,285.516C604.846,285.516 601.137,280.823 597.481,280.661C594.25,280.517 589.683,285.449 589.683,285.449C589.683,285.449 332.794,543.858 326.478,549.801C312.614,562.847 276.463,576.895 252.279,552.019C218.24,517.006 250.72,480.673 254.6,477.479Z" style="fill:rgb(48,53,59);"/>
|
|
6
|
-
</g>
|
|
7
|
-
</svg>
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
3
|
+
<svg width="100%" height="100%" viewBox="0 0 18 10" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
|
|
4
|
+
<g transform="matrix(-0.0247114,-3.02628e-18,2.90782e-18,-0.0237442,23.7506,13.5573)">
|
|
5
|
+
<path d="M254.6,477.479C259.711,473.272 561.717,170.223 561.717,170.223C561.717,170.223 576.205,153.951 597.839,153.983C621.181,154.019 636.425,170.096 636.425,170.096C636.425,170.096 939.167,475.94 940.854,477.463C967.2,501.255 956.012,536.939 942.827,551.356C928.606,566.906 896.33,575.498 868.319,549.101C865.351,546.304 604.846,285.516 604.846,285.516C604.846,285.516 601.137,280.823 597.481,280.661C594.25,280.517 589.683,285.449 589.683,285.449C589.683,285.449 332.794,543.858 326.478,549.801C312.614,562.847 276.463,576.895 252.279,552.019C218.24,517.006 250.72,480.673 254.6,477.479Z" style="fill:rgb(48,53,59);"/>
|
|
6
|
+
</g>
|
|
7
|
+
</svg>
|