@pathscale/ui 0.0.23 → 0.0.24

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 (2) hide show
  1. package/dist/index.js +159 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -5345,6 +5345,164 @@ const FileInput_FileInput = (props)=>{
5345
5345
  })();
5346
5346
  };
5347
5347
  const FileInput = FileInput_FileInput;
5348
+ var FooterTitle_tmpl$ = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<h6>");
5349
+ const FooterTitle = (props)=>{
5350
+ const [local, others] = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.splitProps)(props, [
5351
+ "children",
5352
+ "class",
5353
+ "className",
5354
+ "dataTheme"
5355
+ ]);
5356
+ const classes = ()=>bundle_mjs_twMerge("footer-title", local.class, local.className);
5357
+ return (()=>{
5358
+ var _el$ = FooterTitle_tmpl$();
5359
+ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.spread)(_el$, (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.mergeProps)(others, {
5360
+ get ["data-theme"] () {
5361
+ return local.dataTheme;
5362
+ },
5363
+ get ["class"] () {
5364
+ return classes();
5365
+ }
5366
+ }), false, true);
5367
+ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.insert)(_el$, ()=>local.children);
5368
+ return _el$;
5369
+ })();
5370
+ };
5371
+ var Footer_tmpl$ = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<footer>");
5372
+ const Footer = (props)=>{
5373
+ const [local, others] = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.splitProps)(props, [
5374
+ "children",
5375
+ "class",
5376
+ "className",
5377
+ "dataTheme",
5378
+ "center",
5379
+ "horizontal",
5380
+ "vertical"
5381
+ ]);
5382
+ const classes = ()=>bundle_mjs_twMerge("footer", local.class, local.className, dist_clsx({
5383
+ "footer-center": local.center,
5384
+ "footer-horizontal": local.horizontal,
5385
+ "footer-vertical": local.vertical
5386
+ }));
5387
+ return (()=>{
5388
+ var _el$ = Footer_tmpl$();
5389
+ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.spread)(_el$, (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.mergeProps)(others, {
5390
+ get ["data-theme"] () {
5391
+ return local.dataTheme;
5392
+ },
5393
+ get ["class"] () {
5394
+ return classes();
5395
+ }
5396
+ }), false, true);
5397
+ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.insert)(_el$, ()=>local.children);
5398
+ return _el$;
5399
+ })();
5400
+ };
5401
+ const FooterNamespaces = Object.assign(Footer, {
5402
+ Title: FooterTitle
5403
+ });
5404
+ const footer_Footer = FooterNamespaces;
5405
+ var HeroContent_tmpl$ = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<div>");
5406
+ const HeroContent = (props)=>{
5407
+ const [local, others] = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.splitProps)(props, [
5408
+ "children",
5409
+ "class",
5410
+ "className",
5411
+ "dataTheme",
5412
+ "center"
5413
+ ]);
5414
+ const classes = ()=>bundle_mjs_twMerge("hero-content", local.class, local.className, dist_clsx({
5415
+ "text-center": local.center
5416
+ }));
5417
+ return (()=>{
5418
+ var _el$ = HeroContent_tmpl$();
5419
+ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.spread)(_el$, (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.mergeProps)(others, {
5420
+ get ["data-theme"] () {
5421
+ return local.dataTheme;
5422
+ },
5423
+ get ["class"] () {
5424
+ return classes();
5425
+ }
5426
+ }), false, true);
5427
+ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.insert)(_el$, ()=>local.children);
5428
+ return _el$;
5429
+ })();
5430
+ };
5431
+ var HeroOverlay_tmpl$ = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<div>");
5432
+ const HeroOverlay = (props)=>{
5433
+ const [local, others] = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.splitProps)(props, [
5434
+ "children",
5435
+ "class",
5436
+ "className",
5437
+ "dataTheme",
5438
+ "bgOpacity",
5439
+ "style"
5440
+ ]);
5441
+ const classes = ()=>bundle_mjs_twMerge("hero-overlay", local.class, local.className);
5442
+ const overlayStyle = ()=>{
5443
+ const baseStyle = local.style || {};
5444
+ return {
5445
+ ...baseStyle,
5446
+ backgroundColor: local.bgOpacity ? `rgba(0, 0, 0, ${local.bgOpacity})` : void 0
5447
+ };
5448
+ };
5449
+ return (()=>{
5450
+ var _el$ = HeroOverlay_tmpl$();
5451
+ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.spread)(_el$, (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.mergeProps)(others, {
5452
+ get ["data-theme"] () {
5453
+ return local.dataTheme;
5454
+ },
5455
+ get ["class"] () {
5456
+ return classes();
5457
+ },
5458
+ get style () {
5459
+ return overlayStyle();
5460
+ }
5461
+ }), false, true);
5462
+ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.insert)(_el$, ()=>local.children);
5463
+ return _el$;
5464
+ })();
5465
+ };
5466
+ var Hero_tmpl$ = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<div>");
5467
+ const Hero = (props)=>{
5468
+ const [local, others] = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.splitProps)(props, [
5469
+ "children",
5470
+ "class",
5471
+ "className",
5472
+ "dataTheme",
5473
+ "minHeight",
5474
+ "style"
5475
+ ]);
5476
+ const classes = ()=>bundle_mjs_twMerge("hero", local.class, local.className);
5477
+ const heroStyle = ()=>{
5478
+ const baseStyle = local.style || {};
5479
+ return {
5480
+ ...baseStyle,
5481
+ minHeight: local.minHeight || void 0
5482
+ };
5483
+ };
5484
+ return (()=>{
5485
+ var _el$ = Hero_tmpl$();
5486
+ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.spread)(_el$, (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.mergeProps)(others, {
5487
+ get ["data-theme"] () {
5488
+ return local.dataTheme;
5489
+ },
5490
+ get ["class"] () {
5491
+ return classes();
5492
+ },
5493
+ get style () {
5494
+ return heroStyle();
5495
+ }
5496
+ }), false, true);
5497
+ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.insert)(_el$, ()=>local.children);
5498
+ return _el$;
5499
+ })();
5500
+ };
5501
+ const HeroNamespaces = Object.assign(Hero, {
5502
+ Content: HeroContent,
5503
+ Overlay: HeroOverlay
5504
+ });
5505
+ const hero_Hero = HeroNamespaces;
5348
5506
  const Indicator = (props)=>{
5349
5507
  const [local, others] = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.splitProps)(props, [
5350
5508
  "children",
@@ -7888,4 +8046,4 @@ const Tooltip = (props)=>{
7888
8046
  })();
7889
8047
  };
7890
8048
  const tooltip_Tooltip = Tooltip;
7891
- export { accordion_Accordion as Accordion, alert_Alert as Alert, autocomplete as Autocomplete, avatar as Avatar, Badge, Breadcrumbs, breadcrumbs_BreadcrumbsItem as BreadcrumbsItem, button_Button as Button, card_Card as Card, chatbubble_ChatBubble as ChatBubble, checkbox_Checkbox as Checkbox, codemockup_CodeMockup as CodeMockup, CodeMockupLine, collapse_Collapse as Collapse, CollapseContent, CollapseDetails, CollapseTitle, copy_button_CopyButton as CopyButton, countdown_Countdown as Countdown, diff_Diff as Diff, divider as Divider, dock as Dock, dropdown as Dropdown, field as Field, FileInput, indicator_Indicator as Indicator, input_Input as Input, join_Join as Join, kbd_Kbd as Kbd, link_Link as Link, loading_Loading as Loading, mask as Mask, menu_Menu as Menu, modal as Modal, navbar_Navbar as Navbar, pagination_Pagination as Pagination, polymorphic_Polymorphic as Polymorphic, polymorphic_PolymorphicButton as PolymorphicButton, Progress, props_table_PropsTable as PropsTable, radialprogress_RadialProgress as RadialProgress, radio_Radio as Radio, range_Range as Range, Rating, select_Select as Select, showcase_ShowcaseBlock as ShowcaseBlock, showcase_section_ShowcaseSection as ShowcaseSection, Sidenav, skeleton_Skeleton as Skeleton, Stack, stats_Stats as Stats, status_Status as Status, steps as Steps, Summary, Swap, table as Table, tabs as Tabs, textarea_Textarea as Textarea, Timeline, timeline_TimelineEnd as TimelineEnd, timeline_TimelineItem as TimelineItem, timeline_TimelineMiddle as TimelineMiddle, timeline_TimelineStart as TimelineStart, toast_Toast as Toast, toggle_Toggle as Toggle, tooltip_Tooltip as Tooltip };
8049
+ export { accordion_Accordion as Accordion, alert_Alert as Alert, autocomplete as Autocomplete, avatar as Avatar, Badge, Breadcrumbs, breadcrumbs_BreadcrumbsItem as BreadcrumbsItem, button_Button as Button, card_Card as Card, chatbubble_ChatBubble as ChatBubble, checkbox_Checkbox as Checkbox, codemockup_CodeMockup as CodeMockup, CodeMockupLine, collapse_Collapse as Collapse, CollapseContent, CollapseDetails, CollapseTitle, copy_button_CopyButton as CopyButton, countdown_Countdown as Countdown, diff_Diff as Diff, divider as Divider, dock as Dock, dropdown as Dropdown, field as Field, FileInput, footer_Footer as Footer, hero_Hero as Hero, indicator_Indicator as Indicator, input_Input as Input, join_Join as Join, kbd_Kbd as Kbd, link_Link as Link, loading_Loading as Loading, mask as Mask, menu_Menu as Menu, modal as Modal, navbar_Navbar as Navbar, pagination_Pagination as Pagination, polymorphic_Polymorphic as Polymorphic, polymorphic_PolymorphicButton as PolymorphicButton, Progress, props_table_PropsTable as PropsTable, radialprogress_RadialProgress as RadialProgress, radio_Radio as Radio, range_Range as Range, Rating, select_Select as Select, showcase_ShowcaseBlock as ShowcaseBlock, showcase_section_ShowcaseSection as ShowcaseSection, Sidenav, skeleton_Skeleton as Skeleton, Stack, stats_Stats as Stats, status_Status as Status, steps as Steps, Summary, Swap, table as Table, tabs as Tabs, textarea_Textarea as Textarea, Timeline, timeline_TimelineEnd as TimelineEnd, timeline_TimelineItem as TimelineItem, timeline_TimelineMiddle as TimelineMiddle, timeline_TimelineStart as TimelineStart, toast_Toast as Toast, toggle_Toggle as Toggle, tooltip_Tooltip as Tooltip };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pathscale/ui",
3
- "version": "0.0.23",
3
+ "version": "0.0.24",
4
4
  "author": "pathscale",
5
5
  "repository": {
6
6
  "type": "git",