@kumori/aurora-wui-components 0.0.273-dev4131.21 → 0.0.273-dev4131.23
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/dist/components/axebow-box-form/axebow-box-form.d.ts.map +1 -1
- package/dist/components/axebow-empty-state/axebow-empty-state.d.ts +11 -0
- package/dist/components/axebow-empty-state/axebow-empty-state.d.ts.map +1 -0
- package/dist/components/axebow-form-panel-field/axebow-form-panel-field.d.ts.map +1 -1
- package/dist/components/axebow-tabs-submenu/axebow-tabs-submenu.d.ts +2 -2
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +111 -20
- package/dist/index.js.map +1 -1
- package/dist/playground/schemas/axebow-empty-state.schema.d.ts +8 -0
- package/dist/playground/schemas/axebow-empty-state.schema.d.ts.map +1 -0
- package/dist/styles/axebow-theme.d.ts.map +1 -1
- package/dist/styles/shoelace-style.css +24 -0
- package/package.json +1 -1
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ComponentSchema } from './types.js';
|
|
2
|
+
/**
|
|
3
|
+
* Schema: axebow-empty-state
|
|
4
|
+
*
|
|
5
|
+
* Generic empty state component displayed when lists/tables/sections have no items.
|
|
6
|
+
*/
|
|
7
|
+
export declare const schema: ComponentSchema;
|
|
8
|
+
//# sourceMappingURL=axebow-empty-state.schema.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"axebow-empty-state.schema.d.ts","sourceRoot":"","sources":["../../../src/playground/schemas/axebow-empty-state.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,YAAY,CAAC;AAElD;;;;GAIG;AACH,eAAO,MAAM,MAAM,EAAE,eASpB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"axebow-theme.d.ts","sourceRoot":"","sources":["../../src/styles/axebow-theme.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,WAAW,
|
|
1
|
+
{"version":3,"file":"axebow-theme.d.ts","sourceRoot":"","sources":["../../src/styles/axebow-theme.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,WAAW,yBAqLvB,CAAC;AAEF,eAAO,MAAM,aAAa;;;;;CAKhB,CAAC"}
|
|
@@ -116,3 +116,27 @@ sl-select::part(menu) {
|
|
|
116
116
|
max-width: 90vw !important;
|
|
117
117
|
}
|
|
118
118
|
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
/* Shoelace Input, Select, Textarea Focus Styles */
|
|
122
|
+
:root {
|
|
123
|
+
--sl-input-focus-ring-color: transparent;
|
|
124
|
+
--sl-input-border-color-focus: var(--axebow-black, #000000);
|
|
125
|
+
--sl-focus-ring-color: transparent;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
sl-input::part(base),
|
|
129
|
+
sl-select::part(combobox),
|
|
130
|
+
sl-textarea::part(base) {
|
|
131
|
+
--sl-input-focus-ring-color: transparent;
|
|
132
|
+
--sl-input-border-color-focus: var(--axebow-black, #000000);
|
|
133
|
+
--sl-focus-ring-color: transparent;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
sl-input:focus-within::part(base),
|
|
137
|
+
sl-select:focus-within::part(combobox),
|
|
138
|
+
sl-textarea:focus-within::part(base) {
|
|
139
|
+
border-color: var(--axebow-black, #000000) !important;
|
|
140
|
+
box-shadow: none !important;
|
|
141
|
+
outline: none !important;
|
|
142
|
+
}
|