@discourser/design-system 0.15.0 → 0.15.1

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 (88) hide show
  1. package/dist/{chunk-QC44JPCA.cjs → chunk-ABC7N32K.cjs} +316 -10
  2. package/dist/chunk-ABC7N32K.cjs.map +1 -0
  3. package/dist/{chunk-F7LHARS4.js → chunk-GD6Q2FUE.js} +446 -6
  4. package/dist/chunk-GD6Q2FUE.js.map +1 -0
  5. package/dist/{chunk-M7J7WKJY.js → chunk-SBKRSXSZ.js} +317 -11
  6. package/dist/chunk-SBKRSXSZ.js.map +1 -0
  7. package/dist/{chunk-QP4EJI3G.cjs → chunk-UNWXE6UB.cjs} +450 -2
  8. package/dist/chunk-UNWXE6UB.cjs.map +1 -0
  9. package/dist/components/Breadcrumb.d.ts +9 -0
  10. package/dist/components/Breadcrumb.d.ts.map +1 -0
  11. package/dist/components/Checkbox.d.ts +6 -6
  12. package/dist/components/Icons/ClockIcon.d.ts +6 -0
  13. package/dist/components/Icons/ClockIcon.d.ts.map +1 -0
  14. package/dist/components/Icons/GripDotsVerticalIcon.d.ts +6 -0
  15. package/dist/components/Icons/GripDotsVerticalIcon.d.ts.map +1 -0
  16. package/dist/components/Icons/index.d.ts +3 -0
  17. package/dist/components/Icons/index.d.ts.map +1 -0
  18. package/dist/components/ScenarioQueue/AddScenarioDialog.d.ts +16 -0
  19. package/dist/components/ScenarioQueue/AddScenarioDialog.d.ts.map +1 -0
  20. package/dist/components/ScenarioQueue/ScenarioCard.d.ts +10 -0
  21. package/dist/components/ScenarioQueue/ScenarioCard.d.ts.map +1 -0
  22. package/dist/components/ScenarioQueue/ScenarioCardDraggable.d.ts +15 -0
  23. package/dist/components/ScenarioQueue/ScenarioCardDraggable.d.ts.map +1 -0
  24. package/dist/components/ScenarioQueue/ScenarioQueue.d.ts +3 -0
  25. package/dist/components/ScenarioQueue/ScenarioQueue.d.ts.map +1 -0
  26. package/dist/components/ScenarioQueue/index.d.ts +6 -0
  27. package/dist/components/ScenarioQueue/index.d.ts.map +1 -0
  28. package/dist/components/ScenarioQueue/types.d.ts +56 -0
  29. package/dist/components/ScenarioQueue/types.d.ts.map +1 -0
  30. package/dist/components/index.cjs +65 -33
  31. package/dist/components/index.d.ts +4 -0
  32. package/dist/components/index.d.ts.map +1 -1
  33. package/dist/components/index.js +1 -1
  34. package/dist/index.cjs +69 -37
  35. package/dist/index.js +2 -2
  36. package/dist/preset/index.cjs +2 -2
  37. package/dist/preset/index.d.ts.map +1 -1
  38. package/dist/preset/index.js +1 -1
  39. package/dist/preset/recipes/avatar.d.ts.map +1 -1
  40. package/dist/preset/recipes/breadcrumb.d.ts +2 -0
  41. package/dist/preset/recipes/breadcrumb.d.ts.map +1 -0
  42. package/dist/preset/recipes/checkbox.d.ts.map +1 -1
  43. package/dist/preset/recipes/field.d.ts.map +1 -1
  44. package/dist/preset/recipes/index.d.ts +3 -0
  45. package/dist/preset/recipes/index.d.ts.map +1 -1
  46. package/dist/preset/recipes/progress.d.ts.map +1 -1
  47. package/dist/preset/recipes/radio-group.d.ts.map +1 -1
  48. package/dist/preset/recipes/scenario-card.d.ts +2 -0
  49. package/dist/preset/recipes/scenario-card.d.ts.map +1 -0
  50. package/dist/preset/recipes/scenario-queue.d.ts +2 -0
  51. package/dist/preset/recipes/scenario-queue.d.ts.map +1 -0
  52. package/dist/preset/recipes/steps.d.ts.map +1 -1
  53. package/dist/preset/recipes/toast.d.ts.map +1 -1
  54. package/dist/preset/recipes/tooltip.d.ts.map +1 -1
  55. package/dist/preset/semantic-tokens.d.ts +12 -0
  56. package/dist/preset/semantic-tokens.d.ts.map +1 -1
  57. package/package.json +10 -1
  58. package/src/components/Breadcrumb.tsx +34 -0
  59. package/src/components/Icons/ClockIcon.tsx +40 -0
  60. package/src/components/Icons/GripDotsVerticalIcon.tsx +26 -0
  61. package/src/components/Icons/index.ts +2 -0
  62. package/src/components/ScenarioQueue/AddScenarioDialog.tsx +137 -0
  63. package/src/components/ScenarioQueue/ScenarioCard.tsx +120 -0
  64. package/src/components/ScenarioQueue/ScenarioCardDraggable.tsx +41 -0
  65. package/src/components/ScenarioQueue/ScenarioQueue.test.tsx +398 -0
  66. package/src/components/ScenarioQueue/ScenarioQueue.tsx +162 -0
  67. package/src/components/ScenarioQueue/index.ts +11 -0
  68. package/src/components/ScenarioQueue/types.ts +86 -0
  69. package/src/components/index.ts +19 -0
  70. package/src/preset/index.ts +9 -0
  71. package/src/preset/recipes/avatar.ts +1 -2
  72. package/src/preset/recipes/breadcrumb.ts +77 -0
  73. package/src/preset/recipes/checkbox.ts +1 -2
  74. package/src/preset/recipes/field.ts +1 -2
  75. package/src/preset/recipes/index.ts +7 -0
  76. package/src/preset/recipes/progress.ts +1 -2
  77. package/src/preset/recipes/radio-group.ts +1 -2
  78. package/src/preset/recipes/scenario-card.ts +151 -0
  79. package/src/preset/recipes/scenario-queue.ts +99 -0
  80. package/src/preset/recipes/steps.ts +1 -2
  81. package/src/preset/recipes/toast.ts +1 -2
  82. package/src/preset/recipes/tooltip.ts +1 -2
  83. package/src/preset/semantic-tokens.ts +4 -0
  84. package/src/test/setup.ts +12 -0
  85. package/dist/chunk-F7LHARS4.js.map +0 -1
  86. package/dist/chunk-M7J7WKJY.js.map +0 -1
  87. package/dist/chunk-QC44JPCA.cjs.map +0 -1
  88. package/dist/chunk-QP4EJI3G.cjs.map +0 -1
@@ -1,137 +1,169 @@
1
1
  'use strict';
2
2
 
3
- var chunkQP4EJI3G_cjs = require('../chunk-QP4EJI3G.cjs');
3
+ var chunkUNWXE6UB_cjs = require('../chunk-UNWXE6UB.cjs');
4
4
  require('../chunk-EARF7VDF.cjs');
5
5
 
6
6
 
7
7
 
8
8
  Object.defineProperty(exports, "AbsoluteCenter", {
9
9
  enumerable: true,
10
- get: function () { return chunkQP4EJI3G_cjs.AbsoluteCenter_exports; }
10
+ get: function () { return chunkUNWXE6UB_cjs.AbsoluteCenter_exports; }
11
11
  });
12
12
  Object.defineProperty(exports, "Accordion", {
13
13
  enumerable: true,
14
- get: function () { return chunkQP4EJI3G_cjs.Accordion_exports; }
14
+ get: function () { return chunkUNWXE6UB_cjs.Accordion_exports; }
15
+ });
16
+ Object.defineProperty(exports, "AddScenarioDialog", {
17
+ enumerable: true,
18
+ get: function () { return chunkUNWXE6UB_cjs.AddScenarioDialog; }
15
19
  });
16
20
  Object.defineProperty(exports, "Avatar", {
17
21
  enumerable: true,
18
- get: function () { return chunkQP4EJI3G_cjs.Avatar_exports; }
22
+ get: function () { return chunkUNWXE6UB_cjs.Avatar_exports; }
19
23
  });
20
24
  Object.defineProperty(exports, "Badge", {
21
25
  enumerable: true,
22
- get: function () { return chunkQP4EJI3G_cjs.Badge; }
26
+ get: function () { return chunkUNWXE6UB_cjs.Badge; }
27
+ });
28
+ Object.defineProperty(exports, "Breadcrumb", {
29
+ enumerable: true,
30
+ get: function () { return chunkUNWXE6UB_cjs.Breadcrumb_exports; }
23
31
  });
24
32
  Object.defineProperty(exports, "Button", {
25
33
  enumerable: true,
26
- get: function () { return chunkQP4EJI3G_cjs.Button; }
34
+ get: function () { return chunkUNWXE6UB_cjs.Button; }
27
35
  });
28
36
  Object.defineProperty(exports, "ButtonGroup", {
29
37
  enumerable: true,
30
- get: function () { return chunkQP4EJI3G_cjs.ButtonGroup; }
38
+ get: function () { return chunkUNWXE6UB_cjs.ButtonGroup; }
31
39
  });
32
40
  Object.defineProperty(exports, "Card", {
33
41
  enumerable: true,
34
- get: function () { return chunkQP4EJI3G_cjs.Card_exports; }
42
+ get: function () { return chunkUNWXE6UB_cjs.Card_exports; }
35
43
  });
36
44
  Object.defineProperty(exports, "Checkbox", {
37
45
  enumerable: true,
38
- get: function () { return chunkQP4EJI3G_cjs.Checkbox_exports; }
46
+ get: function () { return chunkUNWXE6UB_cjs.Checkbox_exports; }
47
+ });
48
+ Object.defineProperty(exports, "ClockIcon", {
49
+ enumerable: true,
50
+ get: function () { return chunkUNWXE6UB_cjs.ClockIcon; }
39
51
  });
40
52
  Object.defineProperty(exports, "CloseButton", {
41
53
  enumerable: true,
42
- get: function () { return chunkQP4EJI3G_cjs.CloseButton_exports; }
54
+ get: function () { return chunkUNWXE6UB_cjs.CloseButton_exports; }
43
55
  });
44
56
  Object.defineProperty(exports, "Dialog", {
45
57
  enumerable: true,
46
- get: function () { return chunkQP4EJI3G_cjs.Dialog_exports; }
58
+ get: function () { return chunkUNWXE6UB_cjs.Dialog_exports; }
47
59
  });
48
60
  Object.defineProperty(exports, "Drawer", {
49
61
  enumerable: true,
50
- get: function () { return chunkQP4EJI3G_cjs.Drawer_exports; }
62
+ get: function () { return chunkUNWXE6UB_cjs.Drawer_exports; }
63
+ });
64
+ Object.defineProperty(exports, "GripDotsVerticalIcon", {
65
+ enumerable: true,
66
+ get: function () { return chunkUNWXE6UB_cjs.GripDotsVerticalIcon; }
51
67
  });
52
68
  Object.defineProperty(exports, "Group", {
53
69
  enumerable: true,
54
- get: function () { return chunkQP4EJI3G_cjs.Group_exports; }
70
+ get: function () { return chunkUNWXE6UB_cjs.Group_exports; }
55
71
  });
56
72
  Object.defineProperty(exports, "Heading", {
57
73
  enumerable: true,
58
- get: function () { return chunkQP4EJI3G_cjs.Heading; }
74
+ get: function () { return chunkUNWXE6UB_cjs.Heading; }
59
75
  });
60
76
  Object.defineProperty(exports, "Icon", {
61
77
  enumerable: true,
62
- get: function () { return chunkQP4EJI3G_cjs.Icon_exports; }
78
+ get: function () { return chunkUNWXE6UB_cjs.Icon_exports; }
63
79
  });
64
80
  Object.defineProperty(exports, "IconButton", {
65
81
  enumerable: true,
66
- get: function () { return chunkQP4EJI3G_cjs.IconButton; }
82
+ get: function () { return chunkUNWXE6UB_cjs.IconButton; }
67
83
  });
68
84
  Object.defineProperty(exports, "Input", {
69
85
  enumerable: true,
70
- get: function () { return chunkQP4EJI3G_cjs.Input; }
86
+ get: function () { return chunkUNWXE6UB_cjs.Input; }
71
87
  });
72
88
  Object.defineProperty(exports, "InputAddon", {
73
89
  enumerable: true,
74
- get: function () { return chunkQP4EJI3G_cjs.InputAddon; }
90
+ get: function () { return chunkUNWXE6UB_cjs.InputAddon; }
75
91
  });
76
92
  Object.defineProperty(exports, "InputGroup", {
77
93
  enumerable: true,
78
- get: function () { return chunkQP4EJI3G_cjs.InputGroup; }
94
+ get: function () { return chunkUNWXE6UB_cjs.InputGroup; }
79
95
  });
80
96
  Object.defineProperty(exports, "Popover", {
81
97
  enumerable: true,
82
- get: function () { return chunkQP4EJI3G_cjs.Popover_exports; }
98
+ get: function () { return chunkUNWXE6UB_cjs.Popover_exports; }
83
99
  });
84
100
  Object.defineProperty(exports, "Progress", {
85
101
  enumerable: true,
86
- get: function () { return chunkQP4EJI3G_cjs.Progress_exports; }
102
+ get: function () { return chunkUNWXE6UB_cjs.Progress_exports; }
87
103
  });
88
104
  Object.defineProperty(exports, "RadioGroup", {
89
105
  enumerable: true,
90
- get: function () { return chunkQP4EJI3G_cjs.RadioGroup_exports; }
106
+ get: function () { return chunkUNWXE6UB_cjs.RadioGroup_exports; }
107
+ });
108
+ Object.defineProperty(exports, "ScenarioCard", {
109
+ enumerable: true,
110
+ get: function () { return chunkUNWXE6UB_cjs.ScenarioCard; }
111
+ });
112
+ Object.defineProperty(exports, "ScenarioQueue", {
113
+ enumerable: true,
114
+ get: function () { return chunkUNWXE6UB_cjs.ScenarioQueue; }
91
115
  });
92
116
  Object.defineProperty(exports, "Select", {
93
117
  enumerable: true,
94
- get: function () { return chunkQP4EJI3G_cjs.Select_exports; }
118
+ get: function () { return chunkUNWXE6UB_cjs.Select_exports; }
95
119
  });
96
120
  Object.defineProperty(exports, "Skeleton", {
97
121
  enumerable: true,
98
- get: function () { return chunkQP4EJI3G_cjs.Skeleton_exports; }
122
+ get: function () { return chunkUNWXE6UB_cjs.Skeleton_exports; }
99
123
  });
100
124
  Object.defineProperty(exports, "Slider", {
101
125
  enumerable: true,
102
- get: function () { return chunkQP4EJI3G_cjs.Slider_exports; }
126
+ get: function () { return chunkUNWXE6UB_cjs.Slider_exports; }
103
127
  });
104
128
  Object.defineProperty(exports, "Spinner", {
105
129
  enumerable: true,
106
- get: function () { return chunkQP4EJI3G_cjs.Spinner; }
130
+ get: function () { return chunkUNWXE6UB_cjs.Spinner; }
107
131
  });
108
132
  Object.defineProperty(exports, "Stepper", {
109
133
  enumerable: true,
110
- get: function () { return chunkQP4EJI3G_cjs.Stepper; }
134
+ get: function () { return chunkUNWXE6UB_cjs.Stepper; }
111
135
  });
112
136
  Object.defineProperty(exports, "Switch", {
113
137
  enumerable: true,
114
- get: function () { return chunkQP4EJI3G_cjs.Switch_exports; }
138
+ get: function () { return chunkUNWXE6UB_cjs.Switch_exports; }
115
139
  });
116
140
  Object.defineProperty(exports, "Tabs", {
117
141
  enumerable: true,
118
- get: function () { return chunkQP4EJI3G_cjs.Tabs_exports; }
142
+ get: function () { return chunkUNWXE6UB_cjs.Tabs_exports; }
119
143
  });
120
144
  Object.defineProperty(exports, "Textarea", {
121
145
  enumerable: true,
122
- get: function () { return chunkQP4EJI3G_cjs.Textarea; }
146
+ get: function () { return chunkUNWXE6UB_cjs.Textarea; }
123
147
  });
124
148
  Object.defineProperty(exports, "Toaster", {
125
149
  enumerable: true,
126
- get: function () { return chunkQP4EJI3G_cjs.Toaster; }
150
+ get: function () { return chunkUNWXE6UB_cjs.Toaster; }
127
151
  });
128
152
  Object.defineProperty(exports, "Tooltip", {
129
153
  enumerable: true,
130
- get: function () { return chunkQP4EJI3G_cjs.Tooltip_exports; }
154
+ get: function () { return chunkUNWXE6UB_cjs.Tooltip_exports; }
155
+ });
156
+ Object.defineProperty(exports, "difficultyColorMap", {
157
+ enumerable: true,
158
+ get: function () { return chunkUNWXE6UB_cjs.difficultyColorMap; }
159
+ });
160
+ Object.defineProperty(exports, "difficultyLabel", {
161
+ enumerable: true,
162
+ get: function () { return chunkUNWXE6UB_cjs.difficultyLabel; }
131
163
  });
132
164
  Object.defineProperty(exports, "toaster", {
133
165
  enumerable: true,
134
- get: function () { return chunkQP4EJI3G_cjs.toaster; }
166
+ get: function () { return chunkUNWXE6UB_cjs.toaster; }
135
167
  });
136
168
  //# sourceMappingURL=index.cjs.map
137
169
  //# sourceMappingURL=index.cjs.map
@@ -25,7 +25,11 @@ export * as Popover from './Popover';
25
25
  export * as Tooltip from './Tooltip';
26
26
  export * as CloseButton from './CloseButton';
27
27
  export * as Icon from './Icon';
28
+ export { GripDotsVerticalIcon, type GripDotsVerticalIconProps } from './Icons/GripDotsVerticalIcon';
29
+ export { ClockIcon, type ClockIconProps } from './Icons/ClockIcon';
28
30
  export * as AbsoluteCenter from './AbsoluteCenter';
29
31
  export * as Group from './Group';
32
+ export * as Breadcrumb from './Breadcrumb';
30
33
  export { Stepper, type StepperRootProps, type StepItem } from './Stepper';
34
+ export { ScenarioQueue, ScenarioCard, AddScenarioDialog, difficultyColorMap, difficultyLabel, type ScenarioQueueProps, type ScenarioCardProps, type Scenario, type Difficulty, type ScenarioStatus, } from './ScenarioQueue';
31
35
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,MAAM,EACN,WAAW,EACX,KAAK,WAAW,EAChB,KAAK,gBAAgB,GACtB,MAAM,UAAU,CAAC;AAGlB,OAAO,EAAE,UAAU,EAAE,KAAK,eAAe,EAAE,MAAM,cAAc,CAAC;AAGhE,OAAO,EAAE,KAAK,EAAE,KAAK,UAAU,EAAE,MAAM,SAAS,CAAC;AACjD,OAAO,EAAE,UAAU,EAAE,KAAK,eAAe,EAAE,MAAM,cAAc,CAAC;AAChE,OAAO,EAAE,UAAU,EAAE,KAAK,eAAe,EAAE,MAAM,cAAc,CAAC;AAChE,OAAO,EAAE,QAAQ,EAAE,KAAK,aAAa,EAAE,MAAM,YAAY,CAAC;AAG1D,OAAO,EAAE,OAAO,EAAE,KAAK,YAAY,EAAE,MAAM,WAAW,CAAC;AAGvD,OAAO,EAAE,KAAK,EAAE,KAAK,UAAU,EAAE,MAAM,SAAS,CAAC;AACjD,OAAO,EAAE,OAAO,EAAE,KAAK,YAAY,EAAE,MAAM,WAAW,CAAC;AACvD,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAG3C,OAAO,KAAK,IAAI,MAAM,QAAQ,CAAC;AAC/B,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,KAAK,SAAS,MAAM,aAAa,CAAC;AACzC,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,KAAK,IAAI,MAAM,QAAQ,CAAC;AAC/B,OAAO,KAAK,QAAQ,MAAM,YAAY,CAAC;AACvC,OAAO,KAAK,UAAU,MAAM,cAAc,CAAC;AAC3C,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,KAAK,QAAQ,MAAM,YAAY,CAAC;AACvC,OAAO,KAAK,QAAQ,MAAM,YAAY,CAAC;AACvC,OAAO,KAAK,OAAO,MAAM,WAAW,CAAC;AACrC,OAAO,KAAK,OAAO,MAAM,WAAW,CAAC;AAGrC,OAAO,KAAK,WAAW,MAAM,eAAe,CAAC;AAC7C,OAAO,KAAK,IAAI,MAAM,QAAQ,CAAC;AAC/B,OAAO,KAAK,cAAc,MAAM,kBAAkB,CAAC;AACnD,OAAO,KAAK,KAAK,MAAM,SAAS,CAAC;AAGjC,OAAO,EAAE,OAAO,EAAE,KAAK,gBAAgB,EAAE,KAAK,QAAQ,EAAE,MAAM,WAAW,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,MAAM,EACN,WAAW,EACX,KAAK,WAAW,EAChB,KAAK,gBAAgB,GACtB,MAAM,UAAU,CAAC;AAGlB,OAAO,EAAE,UAAU,EAAE,KAAK,eAAe,EAAE,MAAM,cAAc,CAAC;AAGhE,OAAO,EAAE,KAAK,EAAE,KAAK,UAAU,EAAE,MAAM,SAAS,CAAC;AACjD,OAAO,EAAE,UAAU,EAAE,KAAK,eAAe,EAAE,MAAM,cAAc,CAAC;AAChE,OAAO,EAAE,UAAU,EAAE,KAAK,eAAe,EAAE,MAAM,cAAc,CAAC;AAChE,OAAO,EAAE,QAAQ,EAAE,KAAK,aAAa,EAAE,MAAM,YAAY,CAAC;AAG1D,OAAO,EAAE,OAAO,EAAE,KAAK,YAAY,EAAE,MAAM,WAAW,CAAC;AAGvD,OAAO,EAAE,KAAK,EAAE,KAAK,UAAU,EAAE,MAAM,SAAS,CAAC;AACjD,OAAO,EAAE,OAAO,EAAE,KAAK,YAAY,EAAE,MAAM,WAAW,CAAC;AACvD,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAG3C,OAAO,KAAK,IAAI,MAAM,QAAQ,CAAC;AAC/B,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,KAAK,SAAS,MAAM,aAAa,CAAC;AACzC,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,KAAK,IAAI,MAAM,QAAQ,CAAC;AAC/B,OAAO,KAAK,QAAQ,MAAM,YAAY,CAAC;AACvC,OAAO,KAAK,UAAU,MAAM,cAAc,CAAC;AAC3C,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,KAAK,QAAQ,MAAM,YAAY,CAAC;AACvC,OAAO,KAAK,QAAQ,MAAM,YAAY,CAAC;AACvC,OAAO,KAAK,OAAO,MAAM,WAAW,CAAC;AACrC,OAAO,KAAK,OAAO,MAAM,WAAW,CAAC;AAGrC,OAAO,KAAK,WAAW,MAAM,eAAe,CAAC;AAC7C,OAAO,KAAK,IAAI,MAAM,QAAQ,CAAC;AAG/B,OAAO,EAAE,oBAAoB,EAAE,KAAK,yBAAyB,EAAE,MAAM,8BAA8B,CAAC;AACpG,OAAO,EAAE,SAAS,EAAE,KAAK,cAAc,EAAE,MAAM,mBAAmB,CAAC;AACnE,OAAO,KAAK,cAAc,MAAM,kBAAkB,CAAC;AACnD,OAAO,KAAK,KAAK,MAAM,SAAS,CAAC;AAGjC,OAAO,KAAK,UAAU,MAAM,cAAc,CAAC;AAC3C,OAAO,EAAE,OAAO,EAAE,KAAK,gBAAgB,EAAE,KAAK,QAAQ,EAAE,MAAM,WAAW,CAAC;AAG1E,OAAO,EACL,aAAa,EACb,YAAY,EACZ,iBAAiB,EACjB,kBAAkB,EAClB,eAAe,EACf,KAAK,kBAAkB,EACvB,KAAK,iBAAiB,EACtB,KAAK,QAAQ,EACb,KAAK,UAAU,EACf,KAAK,cAAc,GACpB,MAAM,iBAAiB,CAAC"}
@@ -1,4 +1,4 @@
1
- export { AbsoluteCenter_exports as AbsoluteCenter, Accordion_exports as Accordion, Avatar_exports as Avatar, Badge, Button, ButtonGroup, Card_exports as Card, Checkbox_exports as Checkbox, CloseButton_exports as CloseButton, Dialog_exports as Dialog, Drawer_exports as Drawer, Group_exports as Group, Heading, Icon_exports as Icon, IconButton, Input, InputAddon, InputGroup, Popover_exports as Popover, Progress_exports as Progress, RadioGroup_exports as RadioGroup, Select_exports as Select, Skeleton_exports as Skeleton, Slider_exports as Slider, Spinner, Stepper, Switch_exports as Switch, Tabs_exports as Tabs, Textarea, Toaster, Tooltip_exports as Tooltip, toaster } from '../chunk-F7LHARS4.js';
1
+ export { AbsoluteCenter_exports as AbsoluteCenter, Accordion_exports as Accordion, AddScenarioDialog, Avatar_exports as Avatar, Badge, Breadcrumb_exports as Breadcrumb, Button, ButtonGroup, Card_exports as Card, Checkbox_exports as Checkbox, ClockIcon, CloseButton_exports as CloseButton, Dialog_exports as Dialog, Drawer_exports as Drawer, GripDotsVerticalIcon, Group_exports as Group, Heading, Icon_exports as Icon, IconButton, Input, InputAddon, InputGroup, Popover_exports as Popover, Progress_exports as Progress, RadioGroup_exports as RadioGroup, ScenarioCard, ScenarioQueue, Select_exports as Select, Skeleton_exports as Skeleton, Slider_exports as Slider, Spinner, Stepper, Switch_exports as Switch, Tabs_exports as Tabs, Textarea, Toaster, Tooltip_exports as Tooltip, difficultyColorMap, difficultyLabel, toaster } from '../chunk-GD6Q2FUE.js';
2
2
  import '../chunk-WR5Z5QMQ.js';
3
3
  //# sourceMappingURL=index.js.map
4
4
  //# sourceMappingURL=index.js.map
package/dist/index.cjs CHANGED
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
- var chunkQC44JPCA_cjs = require('./chunk-QC44JPCA.cjs');
4
- var chunkQP4EJI3G_cjs = require('./chunk-QP4EJI3G.cjs');
3
+ var chunkABC7N32K_cjs = require('./chunk-ABC7N32K.cjs');
4
+ var chunkUNWXE6UB_cjs = require('./chunk-UNWXE6UB.cjs');
5
5
  require('./chunk-EARF7VDF.cjs');
6
6
  var clsx = require('clsx');
7
7
 
@@ -11,143 +11,175 @@ function cn(...inputs) {
11
11
 
12
12
  Object.defineProperty(exports, "activeLanguage", {
13
13
  enumerable: true,
14
- get: function () { return chunkQC44JPCA_cjs.material3Language; }
14
+ get: function () { return chunkABC7N32K_cjs.material3Language; }
15
15
  });
16
16
  Object.defineProperty(exports, "discourserPandaPreset", {
17
17
  enumerable: true,
18
- get: function () { return chunkQC44JPCA_cjs.discourserPandaPreset; }
18
+ get: function () { return chunkABC7N32K_cjs.discourserPandaPreset; }
19
19
  });
20
20
  Object.defineProperty(exports, "transformToPandaTheme", {
21
21
  enumerable: true,
22
- get: function () { return chunkQC44JPCA_cjs.transformToPandaTheme; }
22
+ get: function () { return chunkABC7N32K_cjs.transformToPandaTheme; }
23
23
  });
24
24
  Object.defineProperty(exports, "AbsoluteCenter", {
25
25
  enumerable: true,
26
- get: function () { return chunkQP4EJI3G_cjs.AbsoluteCenter_exports; }
26
+ get: function () { return chunkUNWXE6UB_cjs.AbsoluteCenter_exports; }
27
27
  });
28
28
  Object.defineProperty(exports, "Accordion", {
29
29
  enumerable: true,
30
- get: function () { return chunkQP4EJI3G_cjs.Accordion_exports; }
30
+ get: function () { return chunkUNWXE6UB_cjs.Accordion_exports; }
31
+ });
32
+ Object.defineProperty(exports, "AddScenarioDialog", {
33
+ enumerable: true,
34
+ get: function () { return chunkUNWXE6UB_cjs.AddScenarioDialog; }
31
35
  });
32
36
  Object.defineProperty(exports, "Avatar", {
33
37
  enumerable: true,
34
- get: function () { return chunkQP4EJI3G_cjs.Avatar_exports; }
38
+ get: function () { return chunkUNWXE6UB_cjs.Avatar_exports; }
35
39
  });
36
40
  Object.defineProperty(exports, "Badge", {
37
41
  enumerable: true,
38
- get: function () { return chunkQP4EJI3G_cjs.Badge; }
42
+ get: function () { return chunkUNWXE6UB_cjs.Badge; }
43
+ });
44
+ Object.defineProperty(exports, "Breadcrumb", {
45
+ enumerable: true,
46
+ get: function () { return chunkUNWXE6UB_cjs.Breadcrumb_exports; }
39
47
  });
40
48
  Object.defineProperty(exports, "Button", {
41
49
  enumerable: true,
42
- get: function () { return chunkQP4EJI3G_cjs.Button; }
50
+ get: function () { return chunkUNWXE6UB_cjs.Button; }
43
51
  });
44
52
  Object.defineProperty(exports, "ButtonGroup", {
45
53
  enumerable: true,
46
- get: function () { return chunkQP4EJI3G_cjs.ButtonGroup; }
54
+ get: function () { return chunkUNWXE6UB_cjs.ButtonGroup; }
47
55
  });
48
56
  Object.defineProperty(exports, "Card", {
49
57
  enumerable: true,
50
- get: function () { return chunkQP4EJI3G_cjs.Card_exports; }
58
+ get: function () { return chunkUNWXE6UB_cjs.Card_exports; }
51
59
  });
52
60
  Object.defineProperty(exports, "Checkbox", {
53
61
  enumerable: true,
54
- get: function () { return chunkQP4EJI3G_cjs.Checkbox_exports; }
62
+ get: function () { return chunkUNWXE6UB_cjs.Checkbox_exports; }
63
+ });
64
+ Object.defineProperty(exports, "ClockIcon", {
65
+ enumerable: true,
66
+ get: function () { return chunkUNWXE6UB_cjs.ClockIcon; }
55
67
  });
56
68
  Object.defineProperty(exports, "CloseButton", {
57
69
  enumerable: true,
58
- get: function () { return chunkQP4EJI3G_cjs.CloseButton_exports; }
70
+ get: function () { return chunkUNWXE6UB_cjs.CloseButton_exports; }
59
71
  });
60
72
  Object.defineProperty(exports, "Dialog", {
61
73
  enumerable: true,
62
- get: function () { return chunkQP4EJI3G_cjs.Dialog_exports; }
74
+ get: function () { return chunkUNWXE6UB_cjs.Dialog_exports; }
63
75
  });
64
76
  Object.defineProperty(exports, "Drawer", {
65
77
  enumerable: true,
66
- get: function () { return chunkQP4EJI3G_cjs.Drawer_exports; }
78
+ get: function () { return chunkUNWXE6UB_cjs.Drawer_exports; }
79
+ });
80
+ Object.defineProperty(exports, "GripDotsVerticalIcon", {
81
+ enumerable: true,
82
+ get: function () { return chunkUNWXE6UB_cjs.GripDotsVerticalIcon; }
67
83
  });
68
84
  Object.defineProperty(exports, "Group", {
69
85
  enumerable: true,
70
- get: function () { return chunkQP4EJI3G_cjs.Group_exports; }
86
+ get: function () { return chunkUNWXE6UB_cjs.Group_exports; }
71
87
  });
72
88
  Object.defineProperty(exports, "Heading", {
73
89
  enumerable: true,
74
- get: function () { return chunkQP4EJI3G_cjs.Heading; }
90
+ get: function () { return chunkUNWXE6UB_cjs.Heading; }
75
91
  });
76
92
  Object.defineProperty(exports, "Icon", {
77
93
  enumerable: true,
78
- get: function () { return chunkQP4EJI3G_cjs.Icon_exports; }
94
+ get: function () { return chunkUNWXE6UB_cjs.Icon_exports; }
79
95
  });
80
96
  Object.defineProperty(exports, "IconButton", {
81
97
  enumerable: true,
82
- get: function () { return chunkQP4EJI3G_cjs.IconButton; }
98
+ get: function () { return chunkUNWXE6UB_cjs.IconButton; }
83
99
  });
84
100
  Object.defineProperty(exports, "Input", {
85
101
  enumerable: true,
86
- get: function () { return chunkQP4EJI3G_cjs.Input; }
102
+ get: function () { return chunkUNWXE6UB_cjs.Input; }
87
103
  });
88
104
  Object.defineProperty(exports, "InputAddon", {
89
105
  enumerable: true,
90
- get: function () { return chunkQP4EJI3G_cjs.InputAddon; }
106
+ get: function () { return chunkUNWXE6UB_cjs.InputAddon; }
91
107
  });
92
108
  Object.defineProperty(exports, "InputGroup", {
93
109
  enumerable: true,
94
- get: function () { return chunkQP4EJI3G_cjs.InputGroup; }
110
+ get: function () { return chunkUNWXE6UB_cjs.InputGroup; }
95
111
  });
96
112
  Object.defineProperty(exports, "Popover", {
97
113
  enumerable: true,
98
- get: function () { return chunkQP4EJI3G_cjs.Popover_exports; }
114
+ get: function () { return chunkUNWXE6UB_cjs.Popover_exports; }
99
115
  });
100
116
  Object.defineProperty(exports, "Progress", {
101
117
  enumerable: true,
102
- get: function () { return chunkQP4EJI3G_cjs.Progress_exports; }
118
+ get: function () { return chunkUNWXE6UB_cjs.Progress_exports; }
103
119
  });
104
120
  Object.defineProperty(exports, "RadioGroup", {
105
121
  enumerable: true,
106
- get: function () { return chunkQP4EJI3G_cjs.RadioGroup_exports; }
122
+ get: function () { return chunkUNWXE6UB_cjs.RadioGroup_exports; }
123
+ });
124
+ Object.defineProperty(exports, "ScenarioCard", {
125
+ enumerable: true,
126
+ get: function () { return chunkUNWXE6UB_cjs.ScenarioCard; }
127
+ });
128
+ Object.defineProperty(exports, "ScenarioQueue", {
129
+ enumerable: true,
130
+ get: function () { return chunkUNWXE6UB_cjs.ScenarioQueue; }
107
131
  });
108
132
  Object.defineProperty(exports, "Select", {
109
133
  enumerable: true,
110
- get: function () { return chunkQP4EJI3G_cjs.Select_exports; }
134
+ get: function () { return chunkUNWXE6UB_cjs.Select_exports; }
111
135
  });
112
136
  Object.defineProperty(exports, "Skeleton", {
113
137
  enumerable: true,
114
- get: function () { return chunkQP4EJI3G_cjs.Skeleton_exports; }
138
+ get: function () { return chunkUNWXE6UB_cjs.Skeleton_exports; }
115
139
  });
116
140
  Object.defineProperty(exports, "Slider", {
117
141
  enumerable: true,
118
- get: function () { return chunkQP4EJI3G_cjs.Slider_exports; }
142
+ get: function () { return chunkUNWXE6UB_cjs.Slider_exports; }
119
143
  });
120
144
  Object.defineProperty(exports, "Spinner", {
121
145
  enumerable: true,
122
- get: function () { return chunkQP4EJI3G_cjs.Spinner; }
146
+ get: function () { return chunkUNWXE6UB_cjs.Spinner; }
123
147
  });
124
148
  Object.defineProperty(exports, "Stepper", {
125
149
  enumerable: true,
126
- get: function () { return chunkQP4EJI3G_cjs.Stepper; }
150
+ get: function () { return chunkUNWXE6UB_cjs.Stepper; }
127
151
  });
128
152
  Object.defineProperty(exports, "Switch", {
129
153
  enumerable: true,
130
- get: function () { return chunkQP4EJI3G_cjs.Switch_exports; }
154
+ get: function () { return chunkUNWXE6UB_cjs.Switch_exports; }
131
155
  });
132
156
  Object.defineProperty(exports, "Tabs", {
133
157
  enumerable: true,
134
- get: function () { return chunkQP4EJI3G_cjs.Tabs_exports; }
158
+ get: function () { return chunkUNWXE6UB_cjs.Tabs_exports; }
135
159
  });
136
160
  Object.defineProperty(exports, "Textarea", {
137
161
  enumerable: true,
138
- get: function () { return chunkQP4EJI3G_cjs.Textarea; }
162
+ get: function () { return chunkUNWXE6UB_cjs.Textarea; }
139
163
  });
140
164
  Object.defineProperty(exports, "Toaster", {
141
165
  enumerable: true,
142
- get: function () { return chunkQP4EJI3G_cjs.Toaster; }
166
+ get: function () { return chunkUNWXE6UB_cjs.Toaster; }
143
167
  });
144
168
  Object.defineProperty(exports, "Tooltip", {
145
169
  enumerable: true,
146
- get: function () { return chunkQP4EJI3G_cjs.Tooltip_exports; }
170
+ get: function () { return chunkUNWXE6UB_cjs.Tooltip_exports; }
171
+ });
172
+ Object.defineProperty(exports, "difficultyColorMap", {
173
+ enumerable: true,
174
+ get: function () { return chunkUNWXE6UB_cjs.difficultyColorMap; }
175
+ });
176
+ Object.defineProperty(exports, "difficultyLabel", {
177
+ enumerable: true,
178
+ get: function () { return chunkUNWXE6UB_cjs.difficultyLabel; }
147
179
  });
148
180
  Object.defineProperty(exports, "toaster", {
149
181
  enumerable: true,
150
- get: function () { return chunkQP4EJI3G_cjs.toaster; }
182
+ get: function () { return chunkUNWXE6UB_cjs.toaster; }
151
183
  });
152
184
  exports.cn = cn;
153
185
  //# sourceMappingURL=index.cjs.map
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
- export { material3Language as activeLanguage, discourserPandaPreset, transformToPandaTheme } from './chunk-M7J7WKJY.js';
2
- export { AbsoluteCenter_exports as AbsoluteCenter, Accordion_exports as Accordion, Avatar_exports as Avatar, Badge, Button, ButtonGroup, Card_exports as Card, Checkbox_exports as Checkbox, CloseButton_exports as CloseButton, Dialog_exports as Dialog, Drawer_exports as Drawer, Group_exports as Group, Heading, Icon_exports as Icon, IconButton, Input, InputAddon, InputGroup, Popover_exports as Popover, Progress_exports as Progress, RadioGroup_exports as RadioGroup, Select_exports as Select, Skeleton_exports as Skeleton, Slider_exports as Slider, Spinner, Stepper, Switch_exports as Switch, Tabs_exports as Tabs, Textarea, Toaster, Tooltip_exports as Tooltip, toaster } from './chunk-F7LHARS4.js';
1
+ export { material3Language as activeLanguage, discourserPandaPreset, transformToPandaTheme } from './chunk-SBKRSXSZ.js';
2
+ export { AbsoluteCenter_exports as AbsoluteCenter, Accordion_exports as Accordion, AddScenarioDialog, Avatar_exports as Avatar, Badge, Breadcrumb_exports as Breadcrumb, Button, ButtonGroup, Card_exports as Card, Checkbox_exports as Checkbox, ClockIcon, CloseButton_exports as CloseButton, Dialog_exports as Dialog, Drawer_exports as Drawer, GripDotsVerticalIcon, Group_exports as Group, Heading, Icon_exports as Icon, IconButton, Input, InputAddon, InputGroup, Popover_exports as Popover, Progress_exports as Progress, RadioGroup_exports as RadioGroup, ScenarioCard, ScenarioQueue, Select_exports as Select, Skeleton_exports as Skeleton, Slider_exports as Slider, Spinner, Stepper, Switch_exports as Switch, Tabs_exports as Tabs, Textarea, Toaster, Tooltip_exports as Tooltip, difficultyColorMap, difficultyLabel, toaster } from './chunk-GD6Q2FUE.js';
3
3
  import './chunk-WR5Z5QMQ.js';
4
4
  import { clsx } from 'clsx';
5
5
 
@@ -1,13 +1,13 @@
1
1
  'use strict';
2
2
 
3
- var chunkQC44JPCA_cjs = require('../chunk-QC44JPCA.cjs');
3
+ var chunkABC7N32K_cjs = require('../chunk-ABC7N32K.cjs');
4
4
  require('../chunk-EARF7VDF.cjs');
5
5
 
6
6
 
7
7
 
8
8
  Object.defineProperty(exports, "discourserPandaPreset", {
9
9
  enumerable: true,
10
- get: function () { return chunkQC44JPCA_cjs.discourserPandaPreset; }
10
+ get: function () { return chunkABC7N32K_cjs.discourserPandaPreset; }
11
11
  });
12
12
  //# sourceMappingURL=index.cjs.map
13
13
  //# sourceMappingURL=index.cjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/preset/index.ts"],"names":[],"mappings":"AAsDA,eAAO,MAAM,qBAAqB,gCA2IhC,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/preset/index.ts"],"names":[],"mappings":"AA2DA,eAAO,MAAM,qBAAqB,gCA+IhC,CAAC"}
@@ -1,4 +1,4 @@
1
- export { discourserPandaPreset } from '../chunk-M7J7WKJY.js';
1
+ export { discourserPandaPreset } from '../chunk-SBKRSXSZ.js';
2
2
  import '../chunk-WR5Z5QMQ.js';
3
3
  //# sourceMappingURL=index.js.map
4
4
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"avatar.d.ts","sourceRoot":"","sources":["../../../src/preset/recipes/avatar.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,MAAM,0CAoJjB,CAAA"}
1
+ {"version":3,"file":"avatar.d.ts","sourceRoot":"","sources":["../../../src/preset/recipes/avatar.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,MAAM,0CAoJjB,CAAA"}
@@ -0,0 +1,2 @@
1
+ export declare const breadcrumb: import("@pandacss/dev").SlotRecipeConfig;
2
+ //# sourceMappingURL=breadcrumb.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"breadcrumb.d.ts","sourceRoot":"","sources":["../../../src/preset/recipes/breadcrumb.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,UAAU,0CA0ErB,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"checkbox.d.ts","sourceRoot":"","sources":["../../../src/preset/recipes/checkbox.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,QAAQ,0CAyGnB,CAAA"}
1
+ {"version":3,"file":"checkbox.d.ts","sourceRoot":"","sources":["../../../src/preset/recipes/checkbox.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,QAAQ,0CAyGnB,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"field.d.ts","sourceRoot":"","sources":["../../../src/preset/recipes/field.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,KAAK,0CAoChB,CAAA"}
1
+ {"version":3,"file":"field.d.ts","sourceRoot":"","sources":["../../../src/preset/recipes/field.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK,0CAoChB,CAAA"}
@@ -7,6 +7,7 @@ export * from './card';
7
7
  export * from './accordion';
8
8
  export * from './drawer';
9
9
  export * from './tabs';
10
+ export * from './breadcrumb';
10
11
  export * from './switch';
11
12
  export * from './checkbox';
12
13
  export * from './radio-group';
@@ -25,4 +26,6 @@ export * from './tooltip';
25
26
  export * from './heading';
26
27
  export * from './absolute-center';
27
28
  export * from './group';
29
+ export * from './scenario-card';
30
+ export * from './scenario-queue';
28
31
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/preset/recipes/index.ts"],"names":[],"mappings":"AACA,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,SAAS,CAAC;AAGxB,cAAc,QAAQ,CAAC;AACvB,cAAc,aAAa,CAAC;AAC5B,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AAGvB,cAAc,UAAU,CAAC;AACzB,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC;AACzB,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AAGzB,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,WAAW,CAAC;AAC1B,cAAc,SAAS,CAAC;AAGxB,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAG1B,cAAc,WAAW,CAAC;AAG1B,cAAc,mBAAmB,CAAC;AAClC,cAAc,SAAS,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/preset/recipes/index.ts"],"names":[],"mappings":"AACA,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,SAAS,CAAC;AAGxB,cAAc,QAAQ,CAAC;AACvB,cAAc,aAAa,CAAC;AAC5B,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AAGvB,cAAc,cAAc,CAAC;AAG7B,cAAc,UAAU,CAAC;AACzB,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC;AACzB,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AAGzB,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,WAAW,CAAC;AAC1B,cAAc,SAAS,CAAC;AAGxB,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAG1B,cAAc,WAAW,CAAC;AAG1B,cAAc,mBAAmB,CAAC;AAClC,cAAc,SAAS,CAAC;AAGxB,cAAc,iBAAiB,CAAC;AAChC,cAAc,kBAAkB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"progress.d.ts","sourceRoot":"","sources":["../../../src/preset/recipes/progress.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,QAAQ,0CAoHnB,CAAA"}
1
+ {"version":3,"file":"progress.d.ts","sourceRoot":"","sources":["../../../src/preset/recipes/progress.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,QAAQ,0CAoHnB,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"radio-group.d.ts","sourceRoot":"","sources":["../../../src/preset/recipes/radio-group.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,UAAU,0CAgGrB,CAAA"}
1
+ {"version":3,"file":"radio-group.d.ts","sourceRoot":"","sources":["../../../src/preset/recipes/radio-group.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,UAAU,0CAgGrB,CAAA"}
@@ -0,0 +1,2 @@
1
+ export declare const scenarioCard: import("@pandacss/dev").SlotRecipeConfig;
2
+ //# sourceMappingURL=scenario-card.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"scenario-card.d.ts","sourceRoot":"","sources":["../../../src/preset/recipes/scenario-card.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,YAAY,0CAoJvB,CAAA"}
@@ -0,0 +1,2 @@
1
+ export declare const scenarioQueue: import("@pandacss/dev").SlotRecipeConfig;
2
+ //# sourceMappingURL=scenario-queue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"scenario-queue.d.ts","sourceRoot":"","sources":["../../../src/preset/recipes/scenario-queue.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,aAAa,0CAgGxB,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"steps.d.ts","sourceRoot":"","sources":["../../../src/preset/recipes/steps.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,KAAK,0CAIhB,CAAC"}
1
+ {"version":3,"file":"steps.d.ts","sourceRoot":"","sources":["../../../src/preset/recipes/steps.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK,0CAIhB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"toast.d.ts","sourceRoot":"","sources":["../../../src/preset/recipes/toast.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,KAAK,0CA+ChB,CAAA"}
1
+ {"version":3,"file":"toast.d.ts","sourceRoot":"","sources":["../../../src/preset/recipes/toast.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK,0CA+ChB,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"tooltip.d.ts","sourceRoot":"","sources":["../../../src/preset/recipes/tooltip.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,OAAO,0CAkClB,CAAA"}
1
+ {"version":3,"file":"tooltip.d.ts","sourceRoot":"","sources":["../../../src/preset/recipes/tooltip.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,OAAO,0CAkClB,CAAA"}
@@ -187,6 +187,18 @@ export declare const m3SemanticTokens: {
187
187
  _dark: string;
188
188
  };
189
189
  };
190
+ inverseSecondary: {
191
+ value: {
192
+ base: string;
193
+ _dark: string;
194
+ };
195
+ };
196
+ inverseTertiary: {
197
+ value: {
198
+ base: string;
199
+ _dark: string;
200
+ };
201
+ };
190
202
  scrim: {
191
203
  value: {
192
204
  base: string;
@@ -1 +1 @@
1
- {"version":3,"file":"semantic-tokens.d.ts","sourceRoot":"","sources":["../../src/preset/semantic-tokens.ts"],"names":[],"mappings":"AAMA;;;;;GAKG;AACH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8D3B,CAAC"}
1
+ {"version":3,"file":"semantic-tokens.d.ts","sourceRoot":"","sources":["../../src/preset/semantic-tokens.ts"],"names":[],"mappings":"AAMA;;;;;GAKG;AACH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkE3B,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@discourser/design-system",
3
- "version": "0.15.0",
3
+ "version": "0.15.1",
4
4
  "description": "Aesthetic-agnostic design system with Panda CSS and Ark UI",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -149,6 +149,14 @@
149
149
  "./Stepper": {
150
150
  "types": "./src/components/Stepper/index.ts",
151
151
  "import": "./src/components/Stepper/index.ts"
152
+ },
153
+ "./ScenarioQueue": {
154
+ "types": "./src/components/ScenarioQueue/index.ts",
155
+ "import": "./src/components/ScenarioQueue/index.ts"
156
+ },
157
+ "./Breadcrumb": {
158
+ "types": "./src/components/Breadcrumb.tsx",
159
+ "import": "./src/components/Breadcrumb.tsx"
152
160
  }
153
161
  },
154
162
  "files": [
@@ -194,6 +202,7 @@
194
202
  },
195
203
  "dependencies": {
196
204
  "@ark-ui/react": "^5.31.0",
205
+ "@dnd-kit/react": "^0.3.1",
197
206
  "clsx": "^2.1.1"
198
207
  },
199
208
  "devDependencies": {