@seed-design/css 0.0.15 → 0.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.
Files changed (44) hide show
  1. package/package.json +1 -1
  2. package/recipes/action-button.mjs +1 -0
  3. package/recipes/action-chip.mjs +1 -0
  4. package/recipes/action-sheet-item.mjs +1 -0
  5. package/recipes/action-sheet.mjs +1 -0
  6. package/recipes/app-bar-main.mjs +1 -0
  7. package/recipes/app-bar.mjs +1 -0
  8. package/recipes/app-screen.mjs +1 -0
  9. package/recipes/avatar-stack.mjs +1 -0
  10. package/recipes/avatar.mjs +1 -0
  11. package/recipes/badge.mjs +1 -0
  12. package/recipes/bottom-sheet.mjs +1 -0
  13. package/recipes/callout.mjs +1 -0
  14. package/recipes/checkbox.mjs +1 -0
  15. package/recipes/chip-tabs.mjs +1 -0
  16. package/recipes/control-chip.mjs +1 -0
  17. package/recipes/dialog.mjs +1 -0
  18. package/recipes/extended-action-sheet-item.mjs +1 -0
  19. package/recipes/extended-action-sheet.mjs +1 -0
  20. package/recipes/extended-fab.mjs +1 -0
  21. package/recipes/fab.mjs +1 -0
  22. package/recipes/help-bubble.mjs +1 -0
  23. package/recipes/identity-placeholder.mjs +1 -0
  24. package/recipes/inline-banner.mjs +1 -0
  25. package/recipes/link-content.mjs +1 -0
  26. package/recipes/manner-temp-badge.mjs +1 -0
  27. package/recipes/manner-temp.mjs +1 -0
  28. package/recipes/notification-badge-positioner.mjs +1 -0
  29. package/recipes/notification-badge.mjs +1 -0
  30. package/recipes/progress-circle.mjs +1 -0
  31. package/recipes/pull-to-refresh.mjs +1 -0
  32. package/recipes/radio.mjs +1 -0
  33. package/recipes/reaction-button.mjs +1 -0
  34. package/recipes/segmented-control.mjs +1 -0
  35. package/recipes/select-box-group.mjs +1 -0
  36. package/recipes/select-box.mjs +1 -0
  37. package/recipes/skeleton.mjs +1 -0
  38. package/recipes/snackbar-region.mjs +1 -0
  39. package/recipes/snackbar.mjs +1 -0
  40. package/recipes/switch.mjs +1 -0
  41. package/recipes/tabs.mjs +1 -0
  42. package/recipes/text-field.mjs +1 -0
  43. package/recipes/text.mjs +1 -0
  44. package/recipes/toggle-button.mjs +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seed-design/css",
3
- "version": "0.0.15",
3
+ "version": "0.0.17",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/daangn/seed-design.git",
@@ -1,3 +1,4 @@
1
+ import './action-button.css';
1
2
  import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
2
3
 
3
4
  const defaultVariant = {
@@ -1,3 +1,4 @@
1
+ import './action-chip.css';
1
2
  import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
2
3
 
3
4
  const defaultVariant = {
@@ -1,3 +1,4 @@
1
+ import './action-sheet-item.css';
1
2
  import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
2
3
 
3
4
  const defaultVariant = {
@@ -1,3 +1,4 @@
1
+ import './action-sheet.css';
1
2
  import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
2
3
 
3
4
  const actionSheetSlotNames = [
@@ -1,3 +1,4 @@
1
+ import './app-bar-main.css';
1
2
  import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
2
3
 
3
4
  const appBarMainSlotNames = [
@@ -1,3 +1,4 @@
1
+ import './app-bar.css';
1
2
  import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
2
3
 
3
4
  const appBarSlotNames = [
@@ -1,3 +1,4 @@
1
+ import './app-screen.css';
1
2
  import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
2
3
 
3
4
  const appScreenSlotNames = [
@@ -1,3 +1,4 @@
1
+ import './avatar-stack.css';
1
2
  import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
2
3
 
3
4
  const avatarStackSlotNames = [
@@ -1,3 +1,4 @@
1
+ import './avatar.css';
1
2
  import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
2
3
 
3
4
  const avatarSlotNames = [
package/recipes/badge.mjs CHANGED
@@ -1,3 +1,4 @@
1
+ import './badge.css';
1
2
  import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
2
3
 
3
4
  const defaultVariant = {
@@ -1,3 +1,4 @@
1
+ import './bottom-sheet.css';
1
2
  import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
2
3
 
3
4
  const bottomSheetSlotNames = [
@@ -1,3 +1,4 @@
1
+ import './callout.css';
1
2
  import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
2
3
 
3
4
  const calloutSlotNames = [
@@ -1,3 +1,4 @@
1
+ import './checkbox.css';
1
2
  import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
2
3
 
3
4
  const checkboxSlotNames = [
@@ -1,3 +1,4 @@
1
+ import './chip-tabs.css';
1
2
  import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
2
3
 
3
4
  const chipTabsSlotNames = [
@@ -1,3 +1,4 @@
1
+ import './control-chip.css';
1
2
  import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
2
3
 
3
4
  const defaultVariant = {
@@ -1,3 +1,4 @@
1
+ import './dialog.css';
1
2
  import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
2
3
 
3
4
  const dialogSlotNames = [
@@ -1,3 +1,4 @@
1
+ import './extended-action-sheet-item.css';
1
2
  import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
2
3
 
3
4
  const defaultVariant = {
@@ -1,3 +1,4 @@
1
+ import './extended-action-sheet.css';
1
2
  import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
2
3
 
3
4
  const extendedActionSheetSlotNames = [
@@ -1,3 +1,4 @@
1
+ import './extended-fab.css';
1
2
  import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
2
3
 
3
4
  const defaultVariant = {
package/recipes/fab.mjs CHANGED
@@ -1,3 +1,4 @@
1
+ import './fab.css';
1
2
  import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
2
3
 
3
4
  const defaultVariant = {};
@@ -1,3 +1,4 @@
1
+ import './help-bubble.css';
1
2
  import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
2
3
 
3
4
  const helpBubbleSlotNames = [
@@ -1,3 +1,4 @@
1
+ import './identity-placeholder.css';
1
2
  import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
2
3
 
3
4
  const identityPlaceholderSlotNames = [
@@ -1,3 +1,4 @@
1
+ import './inline-banner.css';
1
2
  import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
2
3
 
3
4
  const inlineBannerSlotNames = [
@@ -1,3 +1,4 @@
1
+ import './link-content.css';
1
2
  import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
2
3
 
3
4
  const defaultVariant = {
@@ -1,3 +1,4 @@
1
+ import './manner-temp-badge.css';
1
2
  import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
2
3
 
3
4
  const defaultVariant = {
@@ -1,3 +1,4 @@
1
+ import './manner-temp.css';
1
2
  import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
2
3
 
3
4
  const defaultVariant = {
@@ -1,3 +1,4 @@
1
+ import './notification-badge-positioner.css';
1
2
  import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
2
3
 
3
4
  const defaultVariant = {
@@ -1,3 +1,4 @@
1
+ import './notification-badge.css';
1
2
  import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
2
3
 
3
4
  const defaultVariant = {
@@ -1,3 +1,4 @@
1
+ import './progress-circle.css';
1
2
  import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
2
3
 
3
4
  const progressCircleSlotNames = [
@@ -1,3 +1,4 @@
1
+ import './pull-to-refresh.css';
1
2
  import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
2
3
 
3
4
  const pullToRefreshSlotNames = [
package/recipes/radio.mjs CHANGED
@@ -1,3 +1,4 @@
1
+ import './radio.css';
1
2
  import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
2
3
 
3
4
  const radioSlotNames = [
@@ -1,3 +1,4 @@
1
+ import './reaction-button.css';
1
2
  import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
2
3
 
3
4
  const defaultVariant = {
@@ -1,3 +1,4 @@
1
+ import './segmented-control.css';
1
2
  import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
2
3
 
3
4
  const segmentedControlSlotNames = [
@@ -1,3 +1,4 @@
1
+ import './select-box-group.css';
1
2
  import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
2
3
 
3
4
  const defaultVariant = {};
@@ -1,3 +1,4 @@
1
+ import './select-box.css';
1
2
  import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
2
3
 
3
4
  const selectBoxSlotNames = [
@@ -1,3 +1,4 @@
1
+ import './skeleton.css';
1
2
  import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
2
3
 
3
4
  const defaultVariant = {
@@ -1,3 +1,4 @@
1
+ import './snackbar-region.css';
1
2
  import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
2
3
 
3
4
  const defaultVariant = {};
@@ -1,3 +1,4 @@
1
+ import './snackbar.css';
1
2
  import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
2
3
 
3
4
  const snackbarSlotNames = [
@@ -1,3 +1,4 @@
1
+ import './switch.css';
1
2
  import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
2
3
 
3
4
  const switchSlotNames = [
package/recipes/tabs.mjs CHANGED
@@ -1,3 +1,4 @@
1
+ import './tabs.css';
1
2
  import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
2
3
 
3
4
  const tabsSlotNames = [
@@ -1,3 +1,4 @@
1
+ import './text-field.css';
1
2
  import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
2
3
 
3
4
  const textFieldSlotNames = [
package/recipes/text.mjs CHANGED
@@ -1,3 +1,4 @@
1
+ import './text.css';
1
2
  import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
2
3
 
3
4
  const defaultVariant = {
@@ -1,3 +1,4 @@
1
+ import './toggle-button.css';
1
2
  import { createClassName, mergeVariants, splitVariantProps } from "./shared.mjs";
2
3
 
3
4
  const defaultVariant = {