@cieloazul310/digital-go-pandacss-preset 0.0.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.
Files changed (46) hide show
  1. package/.turbo/turbo-build.log +20 -0
  2. package/README.md +30 -0
  3. package/dist/index.d.mts +8 -0
  4. package/dist/index.d.ts +8 -0
  5. package/dist/index.js +3022 -0
  6. package/dist/index.mjs +2989 -0
  7. package/eslint.config.mjs +6 -0
  8. package/package.json +60 -0
  9. package/src/anatomy.ts +41 -0
  10. package/src/index.ts +32 -0
  11. package/src/recipes/accordion.ts +128 -0
  12. package/src/recipes/breadcrumb.ts +64 -0
  13. package/src/recipes/button.ts +192 -0
  14. package/src/recipes/checkbox.ts +297 -0
  15. package/src/recipes/disclosure.ts +98 -0
  16. package/src/recipes/divider.ts +21 -0
  17. package/src/recipes/drawer.ts +126 -0
  18. package/src/recipes/error-text.ts +16 -0
  19. package/src/recipes/hamburger-menu-button.ts +45 -0
  20. package/src/recipes/index.ts +71 -0
  21. package/src/recipes/input-text.ts +76 -0
  22. package/src/recipes/input.ts +81 -0
  23. package/src/recipes/label.ts +32 -0
  24. package/src/recipes/legend.ts +44 -0
  25. package/src/recipes/link.ts +66 -0
  26. package/src/recipes/list.ts +11 -0
  27. package/src/recipes/menu-item.ts +99 -0
  28. package/src/recipes/menu-list.ts +67 -0
  29. package/src/recipes/menu.ts +101 -0
  30. package/src/recipes/notification-banner.ts +246 -0
  31. package/src/recipes/ordered-list.ts +23 -0
  32. package/src/recipes/radio-group.ts +74 -0
  33. package/src/recipes/radio.ts +227 -0
  34. package/src/recipes/requirement-badge.ts +29 -0
  35. package/src/recipes/resource-list.ts +122 -0
  36. package/src/recipes/select-box.ts +81 -0
  37. package/src/recipes/select.ts +117 -0
  38. package/src/recipes/support-text.ts +16 -0
  39. package/src/recipes/table.ts +146 -0
  40. package/src/recipes/tabs.ts +90 -0
  41. package/src/recipes/textarea.ts +63 -0
  42. package/src/recipes/tree-view.ts +89 -0
  43. package/src/recipes/unordered-list.ts +19 -0
  44. package/src/recipes/utility-link.ts +56 -0
  45. package/tsconfig.json +4 -0
  46. package/tsup.config.ts +9 -0
@@ -0,0 +1,20 @@
1
+
2
+ > @cieloazul310/digital-go-pandacss-preset@0.0.0 build
3
+ > tsup
4
+
5
+ CLI Building entry: src/index.ts
6
+ CLI Using tsconfig: tsconfig.json
7
+ CLI tsup v8.5.0
8
+ CLI Using tsup config: /home/runner/work/digital-go-design-system-with-panda/digital-go-design-system-with-panda/packages/preset/tsup.config.ts
9
+ CLI Target: es2022
10
+ CLI Cleaning output folder
11
+ ESM Build start
12
+ CJS Build start
13
+ CJS dist/index.js 79.11 KB
14
+ CJS ⚡️ Build success in 46ms
15
+ ESM dist/index.mjs 77.58 KB
16
+ ESM ⚡️ Build success in 46ms
17
+ DTS Build start
18
+ DTS ⚡️ Build success in 3571ms
19
+ DTS dist/index.d.mts 248.00 B
20
+ DTS dist/index.d.ts 248.00 B
package/README.md ADDED
@@ -0,0 +1,30 @@
1
+ # デジタル庁デザインシステム Panda CSSレシピ
2
+
3
+ - [x] ボタン
4
+ - [ ] アコーディオン
5
+ - [ ] ボトムナビゲーション
6
+ - [ ] パンくずリスト
7
+ - [ ] チェックボックス
8
+ - [ ] モーダルダイアログ
9
+ - [ ] ディバイダー
10
+ - [ ] ドロワー
11
+ - [ ] ドロップダウンリスト
12
+ - [ ] 緊急時バナー
13
+ - [ ] グローバルメニュー
14
+ - [ ] ハンバーガーメニューボタン
15
+ - [ ] ヘッダーコンテナ
16
+ - [ ] ランゲージセレクター
17
+ - [ ] メガメニュー
18
+ - [ ] メニューリスト
19
+ - [ ] モバイルメニュー
20
+ - [ ] ノティフィケーションバナー
21
+ - [ ] ページネーション
22
+ - [ ] プログレスインジケーター
23
+ - [ ] ラジオボタン
24
+ - [ ] リソースリスト
25
+ - [ ] スクロールトップボタン
26
+ - [ ] セレクトボックス
27
+ - [ ] テーブル
28
+ - [ ] テキストエリア
29
+ - [ ] インプットテキスト
30
+ - [ ] ユーティリティリンク
@@ -0,0 +1,8 @@
1
+ import { Preset } from '@pandacss/dev';
2
+ import { Palette } from '@cieloazul310/digital-go-pandacss-utils';
3
+
4
+ declare const _default: Preset;
5
+
6
+ declare const createPreset: (keyColor?: Palette) => Preset;
7
+
8
+ export { createPreset, _default as default };
@@ -0,0 +1,8 @@
1
+ import { Preset } from '@pandacss/dev';
2
+ import { Palette } from '@cieloazul310/digital-go-pandacss-utils';
3
+
4
+ declare const _default: Preset;
5
+
6
+ declare const createPreset: (keyColor?: Palette) => Preset;
7
+
8
+ export { createPreset, _default as default };